Imports System
Public Module Module1
Public Sub Main()
Console.WriteLine("Hello World")
Dim x as integer = 5
Dim y as integer = 7
Console.WriteLine(x + y)
End Sub
End Module