Imports System
Public Module Module1
Public Sub Main()
Dim Age As Integer
Age = console.ReadLine()
If Age >= 18
console.WriteLine("You are eligible to vote")
Else
console.WriteLine("You are not eligible to vote")
End If
End Sub
End Module