def cryptage(M):
    r = ''
    for c in M:
        r = r + crypt[c]
    return r

M = "informatique"

print(cryptage(M))