#include <iostream>
using namespace std;
int factorial(int n){
if(n==0) return 1;
if(n==1) return 1;
return n*factorial(n-1);
}
int main()
{
int n;
while(cin>>n){
cout<<factorial(n)<<endl;
}
return 0;
}
Subscribe to:
Post Comments (Atom)
All rights reserved||Using Deluxe Template By Klodian
No comments:
Post a Comment