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