public static void Main()
Console.WriteLine("YoU, give me a number >:)");
haha = int.Parse(Console.ReadLine());
Console.WriteLine("Give me another number");
yes = int.Parse(Console.ReadLine());
Console.WriteLine("The last numberrrrr");
no = int.Parse(Console.ReadLine());
if (haha == yes || haha == no || yes == no)
Console.WriteLine("There are two equal numbers, start again please");
else if (haha > yes && yes > no)
Console.WriteLine("The middle number is " + yes);
else if (no > yes && yes > haha)
Console.WriteLine("The middle number is " + yes);
else if (yes > haha && haha > no)
Console.WriteLine("The middle number is " + haha);
else if (no > haha && haha > yes)
Console.WriteLine("The middle number is " + haha);
else if (haha > no && no > yes)
Console.WriteLine("The middle number is " + no);
else if (yes > no && no > haha)
Console.WriteLine("The middle number is " + no);