#include<bits/stdc++.h> using namespace std; int main() { int a,i,b,c; cin>>a>>b; c=a; for(i=1;i<b;i++) c=c*a; cout<<c; return 0; }