Fibonacci Function
Input: `n` (int). Return: List of first `n` Fibonacci numbers (starting 0, 1).
Example
Input: 1
Output: [0]
Run your code to see output
Input: `n` (int). Return: List of first `n` Fibonacci numbers (starting 0, 1).
Input: 1
Output: [0]
Run your code to see output