시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 128 MB5710726.923%

문제

There are $n$ planets in the planetary system of star X. They orbit star X in circular orbits located in the same plane. Their tangent velocities are constant. Directions of orbiting of all planets are the same.

Sometimes the event happens in this planetary system which is called planet parade. It is the moment when all planets and star X are located on the same straight line.

Your task is to find the length of the time interval between two consecutive planet parades.

입력

The first line of the input file contains $n$ --- the number of planets ($2\le n \le 1\,000$).

Second line contains $n$ integer numbers $t_i$ --- the orbiting periods of planets ($1\le t_i\le 10\,000$). Not all of $t_i$ are the same.

출력

Output the answer as a common irreducible fraction, separate numerator and denominator by a space.

예제 입력 1

3
6 2 3

예제 출력 1

3 1

힌트