#include <iostream>
using namespace std;
int fib(int n){
if(n==0) return 0;
if(n==1) return 1;
return fib(n-1)+fib(n-2);
}
int main() {
int a;
while (cin >> a ) { // 注意 while 处理多个 case
cout << fib(a)<< endl;
}
}
// 64 位输出请用 printf("%lld")



京公网安备 11010502036488号