public static void Main()
Console.WriteLine("What is your name? ");
string name = Console.ReadLine();
Console.WriteLine("Hello " +name+ " nice to meet you!");
Console.WriteLine("How old are you?");
int age = Convert.ToInt16(Console.ReadLine());
Console.WriteLine("You are " +age+ "! I didn't think you were that old!");
Console.WriteLine(name + " you are old enough to drive!!");
Console.WriteLine(name + " Sad day - you can't drive yet!");
Console.WriteLine("Do you want to drive?");
string answer = Console.ReadLine();
if(answer == "y"||answer =="yes"||answer == "Y"||answer =="Yes")
Console.WriteLine(name + " ,That's great, I hear driving is fun.");
Console.WriteLine(name + " ,I guess cycling is good excersie.");