#include<iostream> using namespace std; int f(int n){ if(n>=3) return f(n-1)+f(n-2); else return n; } int main(){ int n; cin>>n; cout<<f(n); }