#include using namespace std; typedef long long ll; const ll mod=1e9+7; int N; ll dp[55]; int main(){ cin.tie(0); ios::sync_with_stdio(false); cin>>N; dp[0]=1; dp[1]=1; for(int i=2; i<=N; i++){ dp[i]=dp[i-1]+dp[i-2]; } cout<