algorithm

더블릿|dovelet - 부분 집합의 수/nsubset

블루건 2016. 7. 20. 21:58

문제


1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>
#include <cmath>
 
using namespace std;
 
int main()
{
    uint64_t n, m;
    cin >> n >> m;
    cout << (uint64_t)pow(m, n);
 
    return 0;
}
cs