fork download
  1. for x in [1, 2, 3]:
  2. print(x)
  3. print(x)
Success #stdin #stdout 0.02s 9232KB
stdin
Standard input is empty
stdout
1
2
3
3