0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 23:45:25 +00:00
OI-codes/Luogu/P1244/P1244.cpp

11 lines
150 B
C++
Raw Normal View History

2020-11-01 10:33:39 +00:00
#include <bits/stdc++.h>
using namespace std;
int main() {
int h, k;
cin >> h >> k;
cout << (k + 1) * (1 << h) << endl;
return 0;
}