from math import*
def plant():
    t=0; y = 0.1
    while y <= 1.95 :
        t=t + 1
        y=2/(1+19*exp(-0.04*t))
    return(t)
    
    
    