n=int(input()) dp=[0]*(100) dp[0]=1 dp[1]=1 dp[2]=2 dp[3]=3 if n<=3: print(dp[n]) exit() for i in range(3,n+1): dp[i]=dp[i-1]+dp[i-2] print(dp[n])