#abc125c. [abc125_c]GCD on Blackboard

[abc125_c]GCD on Blackboard

Problem Statement

There are NN integers, A1,A2,...,ANA_1, A_2, ..., A_N, written on the blackboard.

You will choose one of them and replace it with an integer of your choice between 11 and 10910^9 (inclusive), possibly the same as the integer originally written.

Find the maximum possible greatest common divisor of the NN integers on the blackboard after your move.

Constraints

  • All values in input are integers.
  • 2leqNleq1052 \\leq N \\leq 10^5
  • 1leqAileq1091 \\leq A_i \\leq 10^9

Output

Input is given from Standard Input in the following format:

NN A1A_1 A2A_2 ...... ANA_N

Output

Print the maximum possible greatest common divisor of the NN integers on the blackboard after your move.


Sample Input 1

3
7 6 8

Sample Output 1

2

If we replace 77 with 44, the greatest common divisor of the three integers on the blackboard will be 22, which is the maximum possible value.


Sample Input 2

3
12 15 18

Sample Output 2

6

Sample Input 3

2
1000000000 1000000000

Sample Output 3

1000000000

We can replace an integer with itself.