fork download
  1. for j in range(1, 20, 3):
  2. print(j if j & 1 else j + 1)
Success #stdin #stdout 0.03s 9440KB
stdin
Standard input is empty
stdout
1
5
7
11
13
17
19