N = int(input()) dp = [0]*N dp[0] = 1 dp[1] = 2 for i in range(N-2): dp[i+2] = dp[i+1] +dp[i] print(dp[N-1])