Imports System
Public Module Module1
Public Sub Main()
dim x as integer = 100
if x<20 then
console.Write("the number is less than 20")
else
console.WriteLine("the number is greater than 20")
end if
console.WriteLine(" the number is {0}",x)
End Sub
End Module