fork download
  1. p = 1
  2. i = 3
  3.  
  4. while i <= 9:
  5. p += (i / 2)
  6. i = i + 1
  7.  
  8. print(p)
Success #stdin #stdout 0.07s 14048KB
stdin
Standard input is empty
stdout
22.0