algorithm 더블릿|dovelet - 부분 집합의 수/nsubset 블루건 2016. 7. 20. 21:58 문제12345678910111213#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