Write a function to find all fibonacci numbers below given number and return the list?
Login to Submit
Input: 10 Output: [1, 1, 2, 3, 5, 8] Input: 5 Output: [1, 1, 2, 3]