Given an integer ranging from 1-250, return the least number of coins that, when added, result in the input integer. The available coins are 1, 5, 7, 9, and 11. For example, 6 uses two coins, i.e., 5+1.
a) 3 coins
b) 4 coins
c) 5 coins
d) 6 coins