fork download
  1. for i in range(25):
  2. if (i % 3 == 0):
  3. print(i)
  4. elif (i % 5 == 0):
  5. print(i)
Success #stdin #stdout 0.07s 14116KB
stdin
Standard input is empty
stdout
0
3
5
6
9
10
12
15
18
20
21
24