{"raw_statement":[{"iden":"problem statement","content":"An election is taking place.\n$N$ people voted. The $i$\\-th person $(1 \\leq i \\leq N)$ cast a vote to the candidate named $S_i$.\nFind the name of the candidate who received the most votes. The given input guarantees that there is a unique candidate with the most votes."},{"iden":"constraints","content":"*   $1 \\leq N \\leq 100$\n*   $S_i$ is a string of length between $1$ and $10$ (inclusive) consisting of lowercase English letters.\n*   $N$ is an integer.\n*   There is a unique candidate with the most votes."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$N$\n$S_1$\n$S_2$\n$\\vdots$\n$S_N$"},{"iden":"sample input 1","content":"5\nsnuke\nsnuke\ntakahashi\ntakahashi\ntakahashi"},{"iden":"sample output 1","content":"takahashi\n\n`takahashi` got $3$ votes, and `snuke` got $2$, so we print `takahashi`."},{"iden":"sample input 2","content":"5\ntakahashi\ntakahashi\naoki\ntakahashi\nsnuke"},{"iden":"sample output 2","content":"takahashi"},{"iden":"sample input 3","content":"1\na"},{"iden":"sample output 3","content":"a"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}