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