fork download
  1. S = 0
  2. i = 7
  3. while i > 1:
  4. S = S + i / 2
  5. i = i - 1
  6. print(S)
  7.  
Success #stdin #stdout 0.12s 14244KB
stdin
Standard input is empty
stdout
13.5