#include using namespace std; int main() { int N, K; cin >> N >> K; int ans = pow( 2, N ) / pow( 2, K ); cout << ans << endl; }