#40637: 請注意


1121232@stu.wghs.tp.edu.tw (Ian911436)


#include <iostream>
#include <cmath>
using namespace std;
int main() {
  long long int a, b, c;
  cin >> a >> b;
  c = pow(a, b);
  cout << c;
}