본문 바로가기
Python/백준

백준 - 10826 피보나치 수 4

by sophia02 2022. 10. 8.
a = 0
b = 1
c = 0
n = int(input())
for i in range(n):
    c = a+b
    a = b
    b = c
print(a)

'Python > 백준' 카테고리의 다른 글

백준 - 7891 Can you add this?  (0) 2022.10.11
백준 - 10886 0 = not cute / 1 = cute  (0) 2022.10.10
백준 - 2751 수 정렬하기 2  (0) 2022.10.07
백준 - 1978 소수 찾기  (0) 2022.10.06
백준 10768 - 특별한 날  (0) 2022.10.05