using System.Collections.Generic;
public static void Main()
int Winner = r.Next(1, 10);
Console.WriteLine("Welcome to the game!! Please guess a number between 0 and 10. It is " + Winner + " to win!");
int Guess = int.Parse(Console.ReadLine());
Console.WriteLine("Well done! " + Guess + " is correct!!");
Console.WriteLine("Guess lower!!");
Console.WriteLine("Guess higher!!");