There are $n$ contestants participating in a round robin competition. Each pair of contestants face each other only once. In each match there is only one winner, (there are no ties).
Given a subset of contestants $X$ and the winners of the matches between these contestants, it is said that the best player of $X$ cannot be determined if there is no contestant with more wins than the rest.
It is desired to find, given the results of all the matches made in the competition, a set of $3$ contestants where the best contestant cannot be determined.
Output
Print three integers $a,b,c$ ($1 \le a, b, c \le n$), the indices of the players that satisfy that a better player cannot be selected among them. If there are multiple answers, print any. If there is no solution to the problem, print $-1 $.