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