Run ID:155406
提交时间:2026-06-07 11:31:15
#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; }