Run ID:133331
提交时间:2025-10-18 14:56:39
#include<bits/stdc++.h> using namespace std; long long sum(int x,int y){ if(y==0){ return 1; }else{ return sum(x,y-1)*x; } } int main() { long long a,c; cin>>a>>c; cout<<sum(a,c); return 0; }