atcoder#ARC062A. [ABC046C] AtCoDeerくんと選挙速報

[ABC046C] AtCoDeerくんと選挙速報

Score : 300300 points

Problem Statement

AtCoDeer the deer is seeing a quick report of election results on TV. Two candidates are standing for the election: Takahashi and Aoki. The report shows the ratio of the current numbers of votes the two candidates have obtained, but not the actual numbers of votes. AtCoDeer has checked the report NN times, and when he checked it for the ii-th (1iN)(1 \leq i \leq N) time, the ratio was Ti:AiT_i:A_i. It is known that each candidate had at least one vote when he checked the report for the first time.

Find the minimum possible total number of votes obtained by the two candidates when he checked the report for the NN-th time. It can be assumed that the number of votes obtained by each candidate never decreases.

Constraints

  • 1N10001 \leq N \leq 1000
  • 1Ti,Ai1000(1iN)1 \leq T_i,A_i \leq 1000 (1 \leq i \leq N)
  • TiT_i and AiA_i (1iN)(1 \leq i \leq N) are coprime.
  • It is guaranteed that the correct answer is at most 101810^{18}.

Input

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

NN

T1T_1 A1A_1

T2T_2 A2A_2

::

TNT_N ANA_N

Output

Print the minimum possible total number of votes obtained by Takahashi and Aoki when AtCoDeer checked the report for the NN-th time.

3
2 3
1 1
3 2
10

When the numbers of votes obtained by the two candidates change as 2,33,36,42,3 \to 3,3 \to 6,4, the total number of votes at the end is 1010, which is the minimum possible number.

4
1 1
1 1
1 5
1 100
101

It is possible that neither candidate obtained a vote between the moment when he checked the report, and the moment when he checked it for the next time.

5
3 10
48 17
31 199
231 23
3 2
6930