public static void Main()
Console.WriteLine("How many years have you been driving for?");
int years = Int32.Parse(Console.ReadLine());
Console.WriteLine("How many penalty points do you have on your license?");
int points = Int32.Parse(Console.ReadLine());
if ((points >= 6) & (years <= 2))
Console.WriteLine("Your licence has been disqualified for exceeding 6 points.");
else if ((points >= 12) & (years >= 2))
Console.WriteLine("Your licence has been time banned for exceeding 12 points");
Console.WriteLine("Your licence status is OK");