// file: fib.h long int fib(int a) { if (a== 0 || a == 1) return 1; else return (fib(a-2) + fib(a-1)); }