문제

n 번째 피보나치 수 구하기

해결

def fibo(n):
    if n == 1 or n == 2:
        return 1
    
    return fibo(n-1) + fibo(n-2)

알게된 점