#include <iostream> using namespace std; int main() { int n; cin>>n; int a=0,b=1; while(n--){ int c=a+b; a=b; b=c; } cout<<a<<endl; }