#include #include #include using namespace std; int N, K; int A(int n) { if (n == 0) { return 1; } int s = A(n - 1); return s * 2; } int main() { cin >> N >> K; cout << A(N) / A(K) << endl; }