I want to create a program that takes in an input from a user and returns the value in bills
i.e. if the input is 110, I would want to program to output:
1 x 100
1 x 10
and if the input is 87 I want to program to output
4 x 20
1 x 5
2 x 1
etc. Anyone know how to do this?