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