Imports System
Public Module Module1
DIM i, j as Integer
Public Sub Main()
For i As Integer = 1 to 5
console.writeline("{0}:{1}",i,j)
For j As Integer = 1 to 5
Next
console.writeline("TRAILING OCUNTER RESET TO ZERO {0}:{1}",i,j)
End Sub
End Module