# include<stdio.h> #include<iostream> #include<cmath> using namespace std; int main(){ double x; int n; cin>>x>>n; cout<<pow(x,n); return 0; }