from math import exp
def seuil(a):
    t=0
    while 100*exp(-0.12*t)>a:
        t=t+1
    return(t)

print(seuil(80))


Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: