You are given M number of coins and P number of notes.
Write a program to separate the two forms of money without creating two separate classes for notes and coins.
(The order of the output should be the same as that of the input).
Input format
Output format
Print the string Coins : followed by M lines, each of which contains an integer denoting the denominations of the coins.
Print the string Notes : followed by P lines, each of which contains an integer denoting the denominations of the notes.
Constraints
1≤N≤102
1≤Val≤102
Description of Classes:
You need to design 3 classes:
Note and Coin Class
Both the classes have common attributes as well as common methods.
Attributes:
Val: refers to the denomination of the coin or note
Methods:
setvalue(int val): Set the denomination of the coin to the value which is passed as a parameter.
Bag Class
This should be a generic class.
Methods
add(Type t): Add the coin or note to the bag.
Display(): Display the denomination of the coin or note.
The denomination on Notes and Coins are displayed in the required order.