public static void Main()
Random random = new Random();
int num = random.Next(0, 101);
Console.WriteLine("Would you like to play a game with me?");
gameStart = Console.ReadLine();
gameStart = gameStart.ToUpper();
if (gameStart == "YES" || gameStart == "Y")
Console.WriteLine("Nice! \nGuess my number!");
Console.WriteLine("Pick a number between and including 1 and 100!");
guess = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Invalid guess!");
Console.WriteLine("Invalid guess!");
if (guess >= 0 && guess <= 101)
Console.WriteLine("You guessed my number! \nWell done!");
Console.WriteLine("Incorrect number, try again!");
Console.WriteLine("Heres a hint for you, you were too high!");
Console.WriteLine("Heres a hint for you, you were too low!");
Console.WriteLine("Then we shall not play.");