# on importe la fonction exponentielle du module "math"
from math import exp

t = 0
while abs(exp(-0.00012*t)-0.71)>=0.00001:
    t += 1

print(t)
