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