int w=3;main(){ int w=10;printf("%d\n",fun(5)*w);}fun(int k){ if(k==0) return(w);return(fun(k-1)*k);}