public static void Main()
Console.WriteLine("what age are you?");
int age = Convert.ToInt16(Console.ReadLine());
Console.WriteLine("Your age is " + age.ToString());
Console.WriteLine("The students is in years 8-10");
else if((age>=15)&&(age<17))
Console.WriteLine("The students is in years 11-12");
Console.WriteLine("The student is in 6th form");
Console.WriteLine("what stage of driving are you?-\"U\", \"L\" or \"R\"");
string DrivingStage = Console.ReadLine().ToLower();
Console.WriteLine("You are too young to drive");
Console.WriteLine("you are a learner driver");
Console.WriteLine("you are a restricted driver");