public string playerName;
Console.WriteLine("Hello ");
Console.WriteLine("What is your name ");
playerName = Console.ReadLine();
Console.WriteLine("Hello " + playerName);
Console.WriteLine("Please enter your age: ");
playerAge = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Your age is " + playerAge);
Console.WriteLine ("you cannot play this game due to being under 18 ");
Console.WriteLine ("Damn your old son!");
Console.WriteLine ("You are the required age to play the game ");