from math import*
def duree(seuil):
  t=0
  while(1370*exp(-0.065*t+30)>=seuil):
    t=t+1
  return(t)
