You are the king of Pensville where you have workers.
All workers will be grouped in association of size 2,so a total of N associations have to be formed.
The building speed of the worker is .
To make an association, you pick up 2 workers. Let the minimum building speed between both workers be x, then the association has the resultant building speed x.
You have to print the maximum value possible of the sum of building speeds of N associations if you make the associations optimally.
Constraints
Input
First line contains an integer N, representing the number of associations to be made.
Next line contains space separated integers, denoting the building speeds of workers.
Output
Print the maximum value possible of the sum of building speeds of all the associations.
If you make an association using the first and third worker, and another using the second and fourth worker, each association will have 1 and 2 resultant building speed, which has a total of 3.