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