fork download
  1. i = 0
  2. while i < 9:
  3. i += 1
  4. if i == 3:
  5. continue
  6. print(i)
  7.  
Success #stdin #stdout 0.08s 14108KB
stdin
Standard input is empty
stdout
1
2
4
5
6
7
8
9