Imports System
Public Module Module1
Public Sub Main()
For num= 10 to 1 step -1
Console.WriteLine("Hello World, " & num)
next
End Sub
End Module