def nbre_deriv():
    for i in range(1,6):
        h=10**(-i)
        nd=4-h
        print(nd)
        return nd

