def Fibbonacci(p=[0,1],delka=50): if len(p) > delka: return p else: p.append(p[-2]+p[-1]) return Fibbonacci(p,delka) print(Fibbonacci())