#abc306a. [abc306_a]Echo

[abc306_a]Echo

Problem Statement

You are given a string SS of length NN consisting of lowercase English letters.
We denote the ii-th character of SS by SiS_i.
Print the string of length 2N2N obtained by concatenating S1,S1,S2,S2,dots,SNS_1,S_1,S_2,S_2,\\dots,S_N, and SNS_N in this order.
For example, if SS is beginner, print bbeeggiinnnneerr.

Constraints

  • NN is an integer such that 1leNle501 \\le N \\le 50.
  • SS is a string of length NN consisting of lowercase English letters.

Input

The input is given from Standard Input in the following format:

NN SS

Output

Print the answer.


Sample Input 1

8
beginner

Sample Output 1

bbeeggiinnnneerr

It is the same as the example described in the problem statement.


Sample Input 2

3
aaa

Sample Output 2

aaaaaa