int jie_cheng(int n)
{
if(n==1) return 1;
return n*jie_cheng(n-1);
}
double fact(int n)
double sum = 0;
for(int i = 1; i