#include #include "fib.h" int main() { int n; cout << "Input the position of the nth Fibonacci number: "; cin >> n; cout << "The" << n << "th Fibonacci number is:" << fib(n) << endl; return 1; }