This program allows you to generate the first N numbers of the Fibonacci sequence, where each number is the sum of the previous two numbers, starting from 0 and 1.
Run the program.
Input the number of Fibonacci numbers you would like to generate.
The program will generate and print out the specified number of Fibonacci numbers.
For example :
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ...