fork download
  1. for i in range(1, 6): # Loops from 1 to 5
  2. print(i)
  3.  
  4. x = 0
  5. while x < 5:
  6. print(x)
  7. x += 1
  8.  
Success #stdin #stdout 0.08s 14100KB
stdin
Standard input is empty
stdout
1
2
3
4
5
0
1
2
3
4