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

t = 0
while 1/(1+exp(-0.5*t)) <= 0.9:
    t += 0.1

print(t)
