Problem2775--Echo

2775: Echo

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

Problem Statement

You are given a string S of length N consisting of lowercase English letters.
We denote the i-th character of S by Si.
Print the string of length 2N obtained by concatenating S1,S1,S2,S2,,SN, and SN in this order.
For example, if S is beginner, print bbeeggiinnnneerr.

Constraints

  • N is an integer such that 1N50.
  • S is a string of length N consisting of lowercase English letters.

Input

The input is given from Standard Input in the following format

Output

Print the answer.

Sample Input Copy

8
beginner

Sample Output Copy

bbeeggiinnnneerr

Source/Category

 AtCoder