#abc251a. [abc251_a]Six Characters
[abc251_a]Six Characters
Problem Statement
You are given a string consisting of lowercase English characters. The length of is between and , inclusive.
Print the string of length that is a repetition of .
It can be shown that there uniquely exists such a string under the Constraints of this problem.
Constraints
- is a string consisting of lowercase English characters of length between and , inclusive.
Input
Input is given from Standard Input in the following format:
Output
Print the answer string, which is of length .
Sample Input 1
abc
Sample Output 1
abcabc
These are strings that are repetitions of abc
: abc
, abcabc
, abcabcabc
, abcabcabcabc
, and so on. Among them, abcabc
has the length of , so abcabc
should be printed.
Sample Input 2
zz
Sample Output 2
zzzzzz