fork download
  1. s = int(input())
  2.  
  3. n = 0
  4.  
  5. while 2 * s < 150:
  6.  
  7. s += 5
  8.  
  9. n += 2
  10.  
  11. print(n)
Success #stdin #stdout 0.02s 9304KB
stdin
0
5
15
7
100
stdout
30