﻿from math import *

def Seuil(N):
    t=0
    P=65
    while P<N:
        t=t+1
        P=-150+215*exp(0.005*t)
    return t


