Input: any number in 1-15 or 64-79 range which is a sum of either (1, 2, 4, 8, 64) in any combination
Output: an array of integers from this list: (1, 2, 4, 8, 64) the sum of which equals the input number.
e.g.
- input 72, output array(8, 64)
- input 13, output array(1, 4, 8)