public static void Main()
Console.WriteLine("Give me a number");
a = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Give me other number");
b = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("This is the highest " + a);
Console.WriteLine("This is the highest " + b);
Console.WriteLine("Start again, the numbers are the same");