fork download
  1. for I in range(0,5):
  2. if I%2==0:
  3. print("even")
  4. else:
  5. print("odd")
Success #stdin #stdout 0.02s 9144KB
stdin
Standard input is empty
stdout
even
odd
even
odd
even