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