Write a Python program that prompts the user to enter two positive integers and prints the Fibonacci
numbers between them. If there is none, you should print that, too.
Note:
Fibonacci sequence is a sequence in which each number is the sum of the two preceding ones. Numbers that
are part of the Fibonacci sequence are known as Fibonacci numbers, commonly denoted $F_n$.
Starting from 0 and 1, the first few values in the sequence are:
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144
Before you use ChatGPT or anything else, make sure to understand the problem and try to find a solution in
which you use the methods that we learnt in class. You may start by finding the first number in the Fibonacci
sequence that is larger than the smaller number entered by the user.