0
0
0
0
时梓繁
修练者
修练者
int fb(int m)
{
if(m<=2)
return 1;
return fb(m-3)+fb(m-1);
}
int main()
{
int m,num;
cin>>m;
num=fb(m);
cout<<num;
0