#include #define rep(i,n) for (int i =0;i < (n); ++i) using namespace std; typedef long long ll; int main() { int n,k; cin>>n>>k; ll ans; if (n-k<0) { ans = 0; }else{ ans = pow(2,max((n-k),0)); } cout<