| 
| Virtus Contest 1 |  | Start: Feb.06.2021 at 09:07:00 AM Finish: Feb.06.2021 at 11:45:00 AM
 The contest is finished!
 • Contest scoreboard
 
 |  
 
 
| Feedback |  | If you notice incorrect translations in Contester, please let author know. |  
 | Time limit 2000/4000/4000/4000 ms. Memory limit 65000/65000/65000/65000 Kb. Question by Ibrahim Mesecan.
 
 
 Number of Cities 
 You are having a national contest, and many students are
coming from different cities. For advertising the event in the 
media, organization committee asks the cities lists with the 
number of participants from every city. Question:  You are given the cities
list for n participants. Write a program to prepare the 
participating cities list with the number of participants 
from each.
 Input specification  You will be given an integer (n) the number of participants where
1 ≤ n ≤ 10,000. Then in the following n lines you will be given 
n strings where each city name is at most 15 chars long containing 
only 26 English chars.
 
Output specification  Show the cities list with the number of participants from each.
 
 
 
Для отправки решений необходимо выполнить вход.
| Sample Input 
 
7 Elbasan
 Durres
 Tirana
 Elbasan
 Shkoder
 Elbasan
 Tirana
 
 | Sample Output 
 
Elbasan 3 Durres 1
 Tirana 2
 Shkoder 1
 
 |  
 
 |