Imports System
Public Module Module1
Public Sub Main()
dim x = console.ReadLine
dim y = console.ReadLine
if x>y then
console.WriteLine("the value of your first number is the greater {0}",x)
else
console.WriteLine("the value of your second number is greater {0}",y)
end if
End Sub
End Module