il fait la suite de fibonnaci apres un certain nb de mois
# Type your text here nterms = int(input("Entrez un nombre: ")) n1 = 1 n2 = 2 print("\n la suite fibonacci est :") print(n1, ",", n2, end=", ") for i in range(2, nterms): suivant = n1 + n2 print(suivant, end=", ") n1 = n2 n2 = suivant