5 lines
70 B
Python
5 lines
70 B
Python
val = 0
|
|
while True:
|
|
val +=1
|
|
print val
|
|
if val % 6 == 0: break
|