Imports System
Public Module Module1
Public Sub Main()
Dim age As string
dim gender as string
age = console.ReadLine()
if age ="18" then
End if
console.WriteLine("Enter your gender (M/F)")
gender = console.readline()
if gender= "M" then
console.writeline("You are a male")
'if' gender= "F" then
Console.WriteLine("You are female")
'End'
End Sub
End Module