#include
using namespace std;
void fact(int n){
fact(n);
}
int main() {
// your code goes here
ios_base::sync_with_stdio(false);
cin.tie(0);
int t;cin>>t;
while(t–){
int n;cin>>n;
fact(n);
}
return 0;
}
created
last reply
- 3
replies
- 600
views
- 2
users