dp = [0] * 51 dp[0] = 1 N = input() for i in range(N): dp[i+1] += dp[i] if i + 2 <= N: dp[i+2] += dp[i] print(dp[N])