from math import *      # Importation de la bibliothÃ¨que maths pour utiliser la fonction exponentielle
    
def C(t):
    return 10**(-12)*exp(-1.21*10**(-4)*t)
    
def datation(Constante):
    t = 0
    while C(t) > Constante :
        t = t + 1
    return t
    
    
    
