提交时间:2023-12-01 13:26:56

运行 ID: 113118

#include <bits/stdc++.h> using namespace std; const int N=1e7+10; const int INF=0x3f3f3f3f; long long n,x,ans; int main() { cin>>n>>x; ans=pow(n,x); cout<<ans; return 0; }