시도 횟수: 1회
해결한 시간: 01:48
<aside> 💡
산수 문제
</aside>
#include <bits/stdc++.h>
#define FASTIO ios_base::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
using namespace std;
typedef long long ll;
ll x, y;
int main()
{
FASTIO;
cin >> x >> y;
cout << x*pow(2, y);
return 0;
}