You are given that N candidates participated in a contest. For each candidate, you are given Ai, representing the points scored by the ith candidate in the contest. You have to print the indexes of the top K candidates of the contest.
Note: Ai≠Aj∀i≠j i.e, all Aiare distinct.
Input format
Output format
Constraints
1≤N≤105
1≤K≤N
1≤Ai≤109
The points scored by candidates are 25,5,17,10,45. The points scored by top 3 candidates of the contest are 45,25,17. Indexes of those points are 5,1,3 respectively.