fork download
  1. for i in range(9):
  2. if i == 3:
  3. continue
  4. print(i)
  5.  
Success #stdin #stdout 0.12s 14084KB
stdin
Standard input is empty
stdout
0
1
2
4
5
6
7
8