059. Multiply Characters
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Take a single String as input, and output the same string after repeating certain characters by a certain number. The character 'h' should be repeated 5 times, the character 'c' should be repeated 2 times, and the character 'z' should be repeated 12 times.

Input

A single string S containing the string to be modified.

Output

A single string S after being modified.

Example
Input
schizophrenia
Output
scchhhhhizzzzzzzzzzzzophhhhhrenia
Note

All test cases will be completely lowercase.