Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 te
rms will be:
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ...
a term index is entered and Fibonacci sequence is calculated up to that term.
If the index is 5 then the sequence is : 0, 1, 1, 2, 3
if the index is 7 then the sequence is : 0, 1, 1, 2, 3, 5, 8
Write a program that will print the Fibonacci sequence to the term index entered by the user.
The program will ask you if you want to print another sequence; if Yes repeat if No end your program