시도 횟수: 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;
}

복기