def fib_ric(n):
    if n==1 or n==2:
        return 1
    else:
       return fib_ric(n-2)+fib_ric(n-1)
    
x=input("Dammi un indice di Fibonacci maggiore di 0: ")
if x >0:
    print fib_ric(x)
else:
    print("Sveglia! che ti avevo chiesto?!")