#include<bits/stdc++.h> using namespace std; int main() { int x,n; cin>>x>>n; for(int i=1;i<=n-1;i++) { x*=x; } cout<<x; }