using System;
public class Program
{
public static void Main()
int Students = 156;
int groups = 8;
int willStudentsDivideNicely = Students % groups;
if( willStudentsDivideNicely ==0)
Console.WriteLine("yes this works!");
}
if( willStudentsDivideNicely>0)
Console.WriteLine("no this does not work");