#include //#include using namespace std; //using namespace atcoder; typedef long long ll; typedef pair P; //typedef modint998244353 mint; ll a[100]; int main(void){ cin.tie(0); ios::sync_with_stdio(0); ll n; cin>>n; a[0]=1; a[1]=1; for(int i=2;i<=n;i++){ a[i]=a[i-1]+a[i-2]; } cout<