using System;
public class Program
{
public static void Main()
int students = 156;
int groupAmount = 8;
int studentsleftover = students%groupAmount;
Console.WriteLine(studentsleftover);
if(students==0);
}
// in my class there are 156 students. i wish to put them in groups of 8. can i do this?