Run ID:155405
提交时间:2026-06-07 11:30:48
#include<bits/stdc++.h> using namespace std; int n,m; int a(int x,int y){ if(y==1) return x; else{ return a(x,y-1)*x; } } int main(){ cin>>n>>m; long long k; k=a(n,m); cout<<k; }