#SUITE DE FIBONACCI from math import * R="o" while R=="o": N= input("Nombre de termes de la suite ? N=") N=int(N) a=int(1) b=int(1) j=int(1) while j<=N: print(j," : ",a) a,b=b,a+b j=j+1 print("Approximation du nombre d'or: " ,b/a) R=input("Recommencer ? o/n ")