public static void Main()
string Title = "Magic Number Guessing Game";
Random random = new Random();
Random rnd = new Random();
int RandomNumber = rnd.Next(1, 100);
Console.WriteLine("Welcome to the Magic Number Guessing Game!");
Console.WriteLine("I'm thinking of a number between 1 and 100...");
Console.Write("Enter your guess: ");
Guess = Convert.ToInt32(Console.ReadLine());
if (Guess < RandomNumber)
Console.WriteLine("That is incorrect, the number I am thinking of is higher than " + Guess);
if (Guess > RandomNumber)
Console.WriteLine("That is incorrect, the number I am thinking of is lower than " + Guess);
if (Guess == RandomNumber)
Console.WriteLine("Correct! The answer I was thinking of was " + RandomNumber);