#arc114a. [arc114_a]Not coprime

[arc114_a]Not coprime

Problem Statement

Given are NN integers between 22 and 5050 (inclusive): X1,X2,cdots,XNX_1, X_2, \\cdots, X_N. Find the minimum positive integer YY that satisfies the following for every i=1,2,cdots,Ni = 1, 2, \\cdots, N:

  • XiX_i and YY are not coprime.

Constraints

  • 1leqNleq491 \\leq N \\leq 49
  • 2leqXileq502 \\leq X_i \\leq 50
  • XineqXj(ineqj)X_i \\neq X_j (i \\neq j)
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN X1X_1 X2X_2 ldots\\ldots XNX_N

Output

Print the minimum positive integer that satisfies the condition.


Sample Input 1

2
4 3

Sample Output 1

6

Being not coprime with 44 requires being even, and being not coprime with 33 requires being a multiple of 33.


Sample Input 2

1
47

Sample Output 2

47

Sample Input 3

7
3 4 6 7 8 9 10

Sample Output 3

42