int fac(int n) { if(n < 2) { return 1; } return n * fac(n - 1); } void main() { print fac(5); print fac(7); print fac(12); }