Write a program that displays the first 26 numbers in the Fibonacci Sequence. The sequence is named after Leonardo Fibonacci (d.c. 1250). The sequence starts with 0 and 1. (Others define the sequence as starting with 1 and 1). Each successive number in the sequence is the sum of the two previous numbers.
In the header include:
Display the sequence number and the actual Fibonacci number on one line.
Depending on the system you use you may get an overflow condition on the last few numbers. If you do don't worry about it but note it on the output in pencil.
The beginning of the output will look like:
1 0
2 1
3 1
4 2
5 3
6 5
7 8