fork download
  1. #include <cmath>
  2. #include <iostream>
  3. using namespace std;
  4.  
  5. int main() {
  6. int a, b;
  7. cin >> a >> b;
  8. cout << pow(a, b);
  9. }
Success #stdin #stdout 0.01s 5316KB
stdin
2 6
stdout
64