public static void Main()
Console.WriteLine("===============================================");
Console.WriteLine("===========Greater Than & Less Than============");
Console.WriteLine("===============================================");
Console.WriteLine("Enter a number.");
int x = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("ENter a second number.");
int y = Convert.ToInt32(Console.ReadLine());
Console.WriteLine(x + " is greater than " + y + " and " +y+ " is less than " +x+".");
Console.WriteLine(y + " is greater than " +x+ " and " +x+ " is less than " +y+".");
Console.WriteLine("Both numbers are equal.");