from math import*
def concentration():
    t=0
    c=1.3
    while c>0.3:
        t=t+0.1
        c=1.3*exp(-0.4*t)
    return(t)
    
    
    