[5/24] 10870 (피보나치 수 5)

이경준·2021년 5월 24일
0

코테

목록 보기
10/140
post-custom-banner

문제

내 코드

n = int(input())

arr = [0, 1]
for i in range(1, n):
    num = arr[i-1] + arr[i]
    arr.append(num)
print(arr[n])
profile
The Show Must Go On

0개의 댓글