**unf33b.txt** /* 1*/ unsigned long int /* 2*/ Factorial( const unsigned long int N ) /* 3*/ { /* 4*/ if( N <= 1 ) /* 5*/ return 1; /* 6*/ else /* 7*/ return N * Factorial( N - 1 ); /* 8*/ }