public static void Main()
int winNum = r.Next(0, 100);
Console.WriteLine("Guess a number inbetween 0 and 100: ");
int userNum = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Too high!");
else if (userNum < winNum)
Console.WriteLine("Too low!");
else if (userNum == winNum)
Console.WriteLine("You Win!");
Console.WriteLine("The number was:" + winNum);