Imports System
Public Module Module1
Public Sub Main()
dim firstname= "Haya"
dim lastname= "Almanea"
Console.WriteLine("hello {0} {1} welcome to our class",firstname,lastname)
End Sub
End Module