#include <iostream>
using namespace std;
int n;
int ans;
void f(int k)
{
//从0到n的走法
if(k == n) ans ++;
else if(k < n)
{
f(k + 1);
f(k + 2);
}
//else k > 5 的情况不管
}
int main()
{
cin >> n;
f(0);
cout << ans << endl;
return 0;
}