for i = 0 to 5 print(i) end for x = 0 to 2 for y = 0 to 3 print(x, " ", y) end end for x = 0 to 10 for y = 0 to 5 if y == 1 continue end if y == 3 continue end print(x, " ", y) end if x == 1 break end end