import java.util.Scanner;public class GroupsCounter { public static void main(String[] agrc) { Scanner sc = new Scanner(System.in); System.out.println("Please enter the number of students"); int numberOfStudents = sc.nextInt(); System.out.println("Please enter the group capacity"); int groupCapacity = sc.nextInt(); System.out.println("Number of possible groups " + numberOfStudents / groupCapacity); }}