from math import*
def temps(seuil):
  T=0
  while(10-10*exp(-10*T)<seuil):
    T=T+0.1
  return(T)
