Introduction - If you have any usage issues, please Google them yourself
Typed by the user program receives the number N, according to the given value of N, calculate the Fibonacci numbers. Fibonacci numbers are defined as follows: FIB (1) = 1 FIB (2) = 1 FIB (N) = FIB (N-2)+ FIB (N-1) N> = 3