// No.175 simpleDNA // https://yukicoder.me/problems/no/175 // #include #include #include #include using namespace std; int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); unsigned int L, N; cin >> L >> N; cout << fixed << setprecision(0) << pow(2, L-3) * N << endl; }