fork download
  1. S = 100
  2. K = 0
  3.  
  4. for i in range(1, 6):
  5. K += i * i
  6. S -= K
  7.  
  8. print(S)
Success #stdin #stdout 0.07s 14052KB
stdin
Standard input is empty
stdout
-5