#include using namespace std; long countArray(int n, int k, int x) { // Return the number of ways to fill in the array. long int ans=0; for(int i=2;i<=k;i++){ long int sum=1; if(i==2&&n%2==0)sum+=1; else if(i==2&&n%2!=0)sum+=0; else{ for(int j=1;j> n >> k >> x; long answer = countArray(n, k, x); cout << answer << endl; return 0; }