public static void Main()
Console.WriteLine(" Hello!");
Console.WriteLine("Give me one number, whitchever you want");
a = int.Parse (Console.ReadLine());
Console.WriteLine("Okay, now give me a second number please");
b = int.Parse(Console.ReadLine());
Console.WriteLine("Finally, give me a third number");
c = int.Parse(Console.ReadLine());
if (a == b || a == c || b == c)
Console.WriteLine("Sorry but they have to be two numbers that are the same, please start over");
Console.WriteLine( a + " is the highest number");
Console.WriteLine( b + "is the highest number");
Console.WriteLine( c + " is the highest number");