Write a program that reads one word and prints it as many times as there are characters in it. Use string templates.
Input: a single string.
Output: a single string. Use the following template:
"N repetitions of the word str: ..."
where N is the number of letters in the entered word, str the inputs word, and instead of ... there should be word repetitions.
Tip: Remember about repeat()!