- Time limit: 1.00 s
- Memory limit: 512 MB
You start with the string "HIIT" and then expand the string by doing a sequence of moves. On each move, you choose a letter "H", "I" or "T", and replace each occurrence of that letter with the string "HIIT".
What is the final string?
Input
The first input line has an integer : the number of moves.
After this there are lines that describe the moves. Each move is "H", "I" or "T".
You can assume that the length of the final string will be at most .
Output
Print the final string.
Constraints
Example
Input:
2 I H
Output:
HIITHIITIITHIITIITT