JAVA PROGRAM FOR DENOMINATIONS A bank intends to design a program to display the denomination of an input amount, up to 5 digits. The available denomination with the bank are of rupees 1000, 500, 100, 50, 20, 10, 5, 2, and 1. Design a program to accept the amount from the user and display the break-up in descending order of denomination. (i.e. preference should be given to the highest denomination available) along with the total number of notes. [Note: Only the denomination used, should be displayed]. Example: INPUT : 14788 OUTPUT : DENOMINATIONS: 1000 x 14 = 14000 500 x 1 = 500 100 x 2 = 200 50 x 1 = 50 20 x 1 = 20 10 x ...