Imports System
Public Module Module1
Public Sub Main()
dim h as integer
console.writeline("Please type in your height above sea level.")
h = console.readline()
console.writeline((100-h/100) & " this is the temperature that water will boil, at your level.")
End Sub
End Module