public static void Main()
Console.WriteLine("Hello World");
Console.Write(" Enter a number for x: ");
x = int.Parse(Console.ReadLine());
Console.Write(" Enter a number for y: ");
y = int.Parse(Console.ReadLine());
Console.WriteLine("x is greater than y");
Console.WriteLine("x is less than y");
Console.WriteLine("x is equal to y");