1
0
forked from tdwojak/Python2017
Python2017/labs03/task02.py

8 lines
81 B
Python
Raw Permalink Normal View History

2017-12-16 00:56:43 +01:00
def f(n):
a,b = 1,1
for i in range(n-1):
a,b = b,a+b
return a
print(f(55))