Special word is a word which starts with a '#' . You are given a list of N statements and your task is to find the top 5 most occuring 'special words' in the given list. Each statement , let's call it S, will contain at least one special word. There will be maximum of three special words in any statement. All special words in a single statement will be unique.
Input:
First line of the input will contain N denoting the number of statements.
Next N lines, each will contain a string S.
Output:
Print the top five most occuring special words. In case of tie between any two special words, print them in lexicographical order in a new line.
Constraints:
Note: