public static void Main()
Console.WriteLine("What is your name then press enter ");
String name = Console.ReadLine();
Console.WriteLine("please enter your age then press enter ");
int age = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Welcome to driving school" + name);