public static void Main()
Console.WriteLine("Enter value A:");
int myLovelyInt = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter value B:");
int myCheekyInt = Convert.ToInt32(Console.ReadLine());
if (myLovelyInt < myCheekyInt)
Console.WriteLine("A is less than B");
else if (myLovelyInt > myCheekyInt)
Console.WriteLine("A is greater than B");
Console.WriteLine("A is equal to B");