#arc148a. [arc148_a]mod M

[arc148_a]mod M

Problem Statement

You are given a sequence A=(A1,A2,...,AN)A = (A_1, A_2, ..., A_N).
You may perform the following operation exactly once.

  • Choose an integer MM at least 22. Then, for every integer ii (1leqileqN1 \\leq i \\leq N), replace AiA_i with the remainder when AiA_i is divided by MM.

For instance, if M=4M = 4 is chosen when A=(2,7,4)A = (2, 7, 4), AA becomes (2bmod4,7bmod4,4bmod4)=(2,3,0)(2 \\bmod 4, 7 \\bmod 4, 4 \\bmod 4) = (2, 3, 0).

Find the minimum possible number of different elements in AA after the operation.

Constraints

  • 2leqNleq2times1052 \\leq N \\leq 2 \\times 10^5
  • 0leqAileq1090 \\leq A_i \\leq 10^9
  • All values in the input are integers.

Input

The input is given from Standard Input in the following format:

NN A1A_1 A2A_2 dots\\dots ANA_N

Output

Print the answer.


Sample Input 1

3
1 4 8

Sample Output 1

2

If you choose M=3M = 3, you will have $A = (1 \\bmod 3, 4 \\bmod 3, 8 \\bmod 3) = (1, 1, 2)$, where AA contains two different elements.
The number of different elements in AA cannot become 11, so the answer is 22.


Sample Input 2

4
5 10 15 20

Sample Output 2

1

If you choose M=5M = 5, you will have A=(0,0,0,0)A = (0, 0, 0, 0), which is optimal.


Sample Input 3

10
3785 5176 10740 7744 3999 3143 9028 2822 4748 6888

Sample Output 3

1