#include <stdio.h> int main () { int b=fact(5); printf("%d",b); return 0; } int fact(int n){ if(n==1){ return 1; } return fact(n-1)*n; }