def echantillon(n):
    L = [ ]
    for _ in range(n):
        L.append( simul() )

    return sum(L)/n
