Question

Write a function to find all fibonacci numbers below given number and return the list?

Login to Submit

Examples

Input: 10
Output: [1, 1, 2, 3, 5, 8]

Input: 5
Output: [1, 1, 2, 3]