There are n sticks, the i-th of which has length ai. Alex wants to assemble from them as many parallelograms as possible simultaneously, with each stick used at most in one parallelogram. What maximal number of parallelograms is it possible to assemble?
The first line contains a single integer n (1 ≤ n ≤ 200000) — the number of sticks.
The second line contains n integers ai (1 ≤ ai ≤ 200000) — the lengths of sticks.
Output a single integer — the maximal number of parallelograms that is possible to assemble.
4
1 2 1 2
1
12
1 3 5 7 1 3 5 7 1 3 5 7
2
| Name |
|---|


