fork download
  1. for stop in range(1, 11):
  2. if stop % 4 == 0:
  3. continue
  4. print(stop)
Success #stdin #stdout 0.13s 14072KB
stdin
Standard input is empty
stdout
1
2
3
5
6
7
9
10