You have \(N\) toys and \(M\) toy boxes. Initially all boxes are empty, and each box can contain only one toy. Each toy has a price and a box number assigned to it. If you want to choose a toy, you must put it in its assigned box, and of course that box can’t be used for any other toys. You need choose some toys (with their boxes) such that summation of their price is maximized.
Input Format
First line contains two integers \(N\) and \(M\), they are number of toys and number of toy boxes repectively. Each of the next \(N\) lines will contain information about each toy \(P_{i}\) and \(B_{i}\), where \(P_{i}\) is the price of i’th toy and \(B_{i}\) is the box number assigned to it.
\(1 <= N, M <= 100 \)
\(1 <= B_{i}<= M\)
\(1 <= P_{i}<= 100\)
Output Format
Print one integer, maximum summation of price of toys that you can choose by following the problem description.