#include using namespace std;; int main(){ int L,M=2,N,K; cin >> N >>K; if(K>N)cout << 0 << endl; else{ for(int i=N-K;i>0;i--){ M*=2; } cout << M << endl; } }