Imports System
Public Module Module1
Public Sub Main()
For x = 10 to 1 Step -1
console.WriteLine(x)
Next x
End Sub
End Module