partie1_ex31.py

Created by cahier-indice-algo-1techno

Created on April 22, 2022

112 Bytes


def Monarques(n):
    M = 29
    for k in range(1, n + 1):
        M = 0.88 * M
    return M