fork download
  1. a=1
  2. while a<3:
  3. a=a+1
  4. print(a)
Success #stdin #stdout 0.07s 14104KB
stdin
Standard input is empty
stdout
2
3