#include <stdio.h>

int factorial( int n )
{
	if( n == 0 )
		return 1;
	return n * factorial( n-1 );
}

int main(void) {
	// your code goes here
	printf("factorial of 4 : %d ", factorial(4));
	return 0;
}
