Lexicography
Lucy likes letters. She studied the definition of the lexicographical order at school and plays with it.
At first, she tried to construct the lexicographically smallest word out of given letters. It was so easy! Then she tried to build multiple words and minimize one of them. This was much harder!
Formally, Lucy wants to make words of length each out of the given letters, so that the -th of them in the lexicographic order is lexicographically as small as possible.
Input
The first line contains three integers and — the total number of words, the length of each word, and the index of the word Lucy wants to minimize.
The next line contains a string of lowercase letters of the English alphabet.
Output
Output words of letters each, one per line, using the letters from the input. Words must be sorted in the lexicographic order, and the -th of them must be lexicographically as small as possible. If there are multiple answers with the smallest -th word, output any of them.