Run ID:118006

提交时间:2025-04-21 20:53:56

#include<bits/stdc++.h> using namespace std; int main(){ double x; int n; cin>>x>>n; double c = pow(x,n); if(c==floor(c)){ cout<<c; }else{ cout<<c<<endl; } return 0; }