Console.WriteLine("How long have you been driving for?")
Dim numberdriving, points As Integer
numberdriving = Console.ReadLine()
Console.WriteLine("How many points have you accumaulated?")
points = Console.ReadLine()
If numberdriving <= 2 And points >= 6 Then
Console.WriteLine("You are disqualified")
ElseIf numberdriving > 2 And points >= 12 Then
Console.WriteLine("You will get a time ban")
Else Console.WriteLine("Your Status Is Ok")