fork download
  1. for i in range(25):
  2. if (i % 3):
  3. print(i)
  4. elif (i % 5):
  5. print(i)
Success #stdin #stdout 0.1s 14136KB
stdin
Standard input is empty
stdout
1
2
3
4
5
6
7
8
9
10
11
12
13
14
16
17
18
19
20
21
22
23
24