You have an array $$$a$$$ of $$$n$$$ distinct integers.
Now you need to select $$$m$$$ integers from the array $$$a$$$ to form a new array $$$b$$$ so that $$$b$$$ satisfies the following condition:
You need to answer the maximum value of $$$m$$$.
The first line of the input contains one integer $$$n$$$ $$$(1\le n\le 2 \times 10^5)$$$.
The second line contains $$$n$$$ distinct integers $$$a_1,a_2,...,a_n(1\le a_i \le 10^9)$$$.
Print one integer — the number satisfying the conditions above.
9 11 4 5 14 1 9 19 8 10
7