def DecToMaya(n):
    M = Maya()
    for coeff in DecToVige(n):
        M.ajouter(decompChiffre(coeff))
    return M