what is wrong in this code
/Given a brick wall of 4n and tiles of 41, find
the total number of ways of arranging the tiles on wall/
#include
using namespace std;
int ways(int n){
if(n==0)
return 0;
else if(n==1)
return 1;
else
return ways(n-4) + ways(n-1);
}
int main()
{
int n;
cin>>n;
int c = ways(n);
cout<<c;
return 0;
}