Imports System
Public Module Module1
Public Sub Main()
for idx as integer = 1 to 99 step 2
Console.WriteLine(idx)
next
End Sub
End Module