#include using namespace std; int main() { int n, k; cin >> n >> k; int ans = pow(2, n) / pow(2, k); cout << ans << '\n'; }