Bertrand Benjamin
ab8b3a88da
All checks were successful
continuous-integration/drone/push Build is passing
8 lines
134 B
Python
8 lines
134 B
Python
annee = 0
|
|
montant = 100
|
|
while montant < 250:
|
|
annee = annee + 1
|
|
montant = montant * (1 + 10 / 100)
|
|
print(annee)
|
|
print(montant)
|