#include<iostream> using namespace std; int main(){ int a,b; cin>>a>>b; for(int i=1;i>=b;i++){ a=a*a; } cout<<a; return 0; }
TLE,AC,WA都有。