fork download
  1. # print the first 5 numbers (0 - 4)
  2. x = 0
  3. while x < 5:
  4. print(x)
  5. x = x + 1
  6.  
Success #stdin #stdout 0.02s 9300KB
stdin
Standard input is empty
stdout
0
1
2
3
4