fork download
  1. total = 0
  2. for i in range(0, 10, 2):
  3. total += i
  4.  
  5. print(total)
  6.  
  7.  
Success #stdin #stdout 0.03s 9520KB
stdin
8
stdout
20