def Fibbonacci(p=[0,1],m=100): if p[-2]+p[-1] < m: p.append(p[-2]+p[-1]) return Fibbonacci(p,m) else: return p print(Fibbonacci())