Run ID:103768

提交时间:2024-12-29 15:12:57

#include<bits/stdc++.h> using namespace std; long long cf(long long x,long long n){ if(x==0){ return 0; } if(n==0){ return 0; } return x*cf(x,n-1); } int main(){ int x,y; cin>>x>>y; cout<<cf(); return 0; }