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