#include <fact.h>

long long int factorielle(long int n)
{
	long long int f = 1;
	while (n > 1) {	
		f = f * n;
		n = n - 1;
	}
	return f;
}


