public static void Main()
Console.WriteLine("Give me a numbre");
x = int.Parse(Console.ReadLine());
Console.WriteLine("Give me another numbre");
y = int.Parse(Console.ReadLine());
Console.WriteLine( x + " is higher than " + y );
Console.WriteLine( y + " Is higher than " + x);
Console.WriteLine( "They're equal. Try again");