fork download
  1. i = s = 0
  2.  
  3. while i < 100:
  4. i += 1
  5. s += i
  6.  
  7. print(s)
Success #stdin #stdout 0.11s 13956KB
stdin
Standard input is empty
stdout
5050