Submit Submissions Statistics

Problem ID: locust-locus

Time Limit: 1.0 seconds

Memory Limit: 32.0 MB

Difficulty: Medium

Locust Locus

Description

There are two different species of periodical cicadas that only appear from hibernation every $13$ and $17$ years, respectively. Your old grandpa tells you that he saw them simultaneously back in '92. You start pondering how many years you have to wait until you see them again. You collect information about other pairs of periodical cicadas and when they were last observed to find out when the next simultaneous appearance is.

Given several different pairs of cicadas and their last simultaneous appearance, find the next year that one of the pairs reappears.

Input format

The first line of input contains a single integer $k$ ($1 \le k \le 99$), the number of pairs of periodical cicadas. Then follow $k$ lines, each containing three integers $y$, $c_1$ and $c_2$ ($1800 \le y \le 2021$, $1 \le c_1, c_2 \le 99$), the year this pair was last observed and cycle lengths for the first and second species, respectively. You may assume that none of the $k$ pairs reappears earlier than $2022$.

Output format

Output the first year a pair reappears.

Input Sample 1

2
2020 2 3
2019 3 4

Output Sample 1

2026

Input Sample 2

3
1992 13 17
1992 14 18
2001 5 7

Output Sample 2

2036