Imports System
Public Module Module1
Public Sub Main()
Dim age As Integer
console.WriteLine("how old are you?")
age = console.ReadLine()
if age > 16 then
console.writeline("you are old enough to drive")
End if
if age > 69 then
console.WriteLine("You need to take an age related driving test")
else
console.writeline("you are not old enough to drive")
End Sub
End Module