import sys
input = sys.stdin.readline
fibo_nums = [0, 1]
for i in range(10000):
fibo_nums.append(sum([fibo_nums[-1], fibo_nums[-2]]))
n = int(input())
print (fibo_nums[n])
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 10829번 이진수 변환 (파이썬) (0) | 2022.06.17 |
---|---|
[백준] 10828번 스택 (파이썬) (0) | 2022.06.17 |
[백준] 10819번 차이를 최대로 (파이썬) (0) | 2022.06.17 |
[백준] 10818번 최소, 최대 (C++) (0) | 2022.06.17 |
[백준] 10817 세 수 (파이썬) (0) | 2022.06.17 |