Imports System
Public Module Module1
Public Sub Main()
dim a as integer = 100
dim b as integer = 50
if a>=10 then
Console.WriteLine(" a is greater than 50")
end if
if b <= 5
Console.WriteLine(" b is less than 5")
Console.WriteLine(" thank you for using vb.net")
End Sub
End Module