#include <cstdlib>
#include <iostream>using namespace std;
//递归过深,栈溢出
int get(int n)
{
if(n==0)return 1;
if(n==-1)return 0;
return get(n-2);
}
int main(int argc, char *argv[])
{
cout<<get(1200000)<<endl;
system("PAUSE");
return EXIT_SUCCESS;
}