fork download
  1. s = 7
  2. n = 0
  3.  
  4. while 2 * s < 150:
  5. s = s + 5
  6. n = n + 2
  7.  
  8. print(n)
  9.  
Success #stdin #stdout 0.07s 13984KB
stdin
Standard input is empty
stdout
28