728x90
반응형

피보나치 수 4랑 답이 같다.

n = int(input())
a, b = 0, 1
for i in range(n):
    a, b = b, a+b
print(a)

728x90
반응형

+ Recent posts