public static void Main()
Console.WriteLine("What is your name?");
string name = Console.ReadLine();
Console.WriteLine("Hello " +name);
Console.WriteLine("How old are you?");
int age = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Really " +name+ ", I did not think you were a day over 100");
Console.WriteLine("You are old enough to drive");
Console.WriteLine("You have to wait until your are older to drive");