public static void Main()
Console.Write("Enter the number of the kids in the class:");
int students = int.Parse(Console.ReadLine());
Console.Write("Enter the number of the chairs in the classroom:");
int chairs = int.Parse(Console.ReadLine());
{ int left = (chairs-students);
Console.WriteLine("there are more chairs than students");
Console.WriteLine("there are " + left + " chairs left");
else if (students==chairs)
{ Console.WriteLine("Everybody gets a chair");
{ Console.WriteLine("NOT ENOUGH CHAIRS");