시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 64 MB31133.333%

문제

The Great Dodgers company has recently developed a brand-new playing machine.

You put a coin into the machine and pull the handle. After that it chooses some integer number. If the chosen number is zero you win a jackpot. In the other case the machine tries to divide the chosen number by the lucky numbers $p_1, p_2, \dots ,p_n$. If at least one of the remainders is zero — you win.

Great Dodgers want to calculate the probability of winning on their machine. They tried to do it, but failed. So Great Dodgers hired you to write a program that calculates the corresponding probability.

Unfortunately, probability theory does not allow you to assume that all integer numbers have equal probability. But one mathematician hinted you that the required probability can be approximated as the following limit:

$$\lim_{k \rightarrow \infty } {\frac{S_k}{2k+1}}\text{.}$$

Here $S_k$ is the number of integers between $-k$ and $k$ that are divisible by at least one of the lucky numbers.

입력

Input file contains $n$ — the number of lucky numbers (1 ≤ $n$ ≤ 16), followed by $n$ lucky numbers (1 ≤ $p_i$ ≤ 109).

출력

It is clear that the requested probability is rational. Output it as an irreducible fraction.

On the first line of the output file print the numerator of the winning probability. On the second line print its denominator. Both numerator and denominator must be printed without leading zeroes. Remember that the fraction must be irreducible.

예제 입력 1

1
2

예제 출력 1

1
2

예제 입력 2

2
4 6

예제 출력 2

1
3