#abc155c. [abc155_c]Poll
[abc155_c]Poll
Problem Statement
We have voting papers. The -th vote has the string written on it.
Print all strings that are written on the most number of votes, in lexicographical order.
Constraints
- are strings consisting of lowercase English letters.
- The length of is between and (inclusive).
Input
Input is given from Standard Input in the following format:
Output
Print all strings in question in lexicographical order.
Sample Input 1
7
beat
vet
beet
bed
vet
bet
beet
Sample Output 1
beet
vet
beet
and vet
are written on two sheets each, while beat
, bed
, and bet
are written on one vote each. Thus, we should print the strings beet
and vet
.
Sample Input 2
8
buffalo
buffalo
buffalo
buffalo
buffalo
buffalo
buffalo
buffalo
Sample Output 2
buffalo
Sample Input 3
7
bass
bass
kick
kick
bass
kick
kick
Sample Output 3
kick
Sample Input 4
4
ushi
tapu
nichia
kun
Sample Output 4
kun
nichia
tapu
ushi