#abc251a. [abc251_a]Six Characters

[abc251_a]Six Characters

Problem Statement

You are given a string SS consisting of lowercase English characters. The length of SS is between 11 and 33, inclusive.

Print the string of length 66 that is a repetition of SS.

It can be shown that there uniquely exists such a string under the Constraints of this problem.

Constraints

  • SS is a string consisting of lowercase English characters of length between 11 and 33, inclusive.

Input

Input is given from Standard Input in the following format:

SS

Output

Print the answer string, which is of length 66.


Sample Input 1

abc

Sample Output 1

abcabc

These are strings that are repetitions of S=S = abc: abc, abcabc, abcabcabc, abcabcabcabc, and so on. Among them, abcabc has the length of 66, so abcabc should be printed.


Sample Input 2

zz

Sample Output 2

zzzzzz