A basketball tournament with no draws involved $$$n$$$ teams. Each game ended in a victory for one team. Arseny wrote down the number of wins for each team, but doesn't know what system the tournament was run under. He has two hypotheses:
Help Arseny determine which system could have been used, based on the known number of wins for each team.
The first line of the input file contains an integer $$$n$$$ ($$$3 \le n \le 10^{5}$$$) — the number of teams.
In each of the following $$$n$$$ lines, the name of the team and the number of victories are given.
It is guaranteed that the sum of the lengths of the team names is no greater than $$$3 \cdot 10^5$$$.
Output Round-robin if the teams played in a round-robin tournament, otherwise output Olympic.
The problem has 20 tests, each test is worth 5 points.
3aba 1abc 2rty 0
Round-robin
4a 0b 0c 1d 2
Olympic