#ifndef FUNCTIONS_H
#define FUNCTIONS_H

/* fact : compute factorial of given number 
 * input: n
 * output: n!
 */
unsigned long int fact(unsigned int n);

#endif
