#include int fab(int n) { if (n == 1) return 1; return n * fab(n - 1); } int main() { int n = 8; printf("Fab: %d", fab(n)); return 0; }