#include using namespace std; template T power(T a, T b) { if (b == 0) return 1; T res = power(a * a, b / 2); if (b % 2) res *= a; return res; } int main() { int N, K; cin >> N >> K; cout << power(2, N) / power(2, K); }