PivotOJ

Democratic Naming

시간 제한: 1000ms메모리 제한: 1024MB출처: BAPC 2023BOJ 30492

문제

A new county has been created on artificially created land out from the coast, with code name "Built Anew Peninsula County", but the final name still needs to be chosen. To establish a new name, the cities within the county get to vote on the individual letters of the name.

As it happens, all cities in the county have a name with exactly mm letters, and so they decide the name of the county will also have exactly mm letters. Naturally, each city prefers their own name, and thus votes that the iith letter of the county name should match theirs. For each of the mm positions, the letter that received the most votes across all cities gets picked. In case of a tie between multiple letters, the one occurring earliest in the English alphabet gets picked.

Given the list of the city names, determine the result of the vote for the new county's name.

입력

The input consists of:

  • One line with two integers nn and mm (1n10001\leq n\leq 1000, 1m10001 \leq m \leq 1000), the number of cities and the number of letters in each city name.
  • nn lines, each with a string of length mm, the name of a city.

The city names only consist of lowercase English letters (a-z).

출력

Output the name of the new county.

예제

예제 1

입력
3 5
apple
maple
alpha
출력
aaple

예제 2

입력
3 4
icpc
back
laps
출력
bapc
코드를 제출하려면 로그인하세요.