Run ID:155413
提交时间:2026-06-07 11:35:04
#include<bits/stdc++.h> using namespace std; long long age(long long x,long long y){ if(y==0){ return 1; } else{ return age(x,y-1)*x; } } int main(){ int a,c; cin>>a>>c; cout<<age(a,c); return 0; }