#include using namespace std; int pow[32]; int main(){ pow[0] = 1; for(int i = 1; 32 > i; i++){ pow[i] = pow[i-1]*2; } int n,k;cin>>n>>k; cout << pow[n-k] << endl; }