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