fork download
  1. a = 0
  2. while a < 10:
  3. a = a + 1
  4. print (a)
Success #stdin #stdout 0.05s 9568KB
stdin
Standard input is empty
stdout
1
2
3
4
5
6
7
8
9
10