#abc293a. [abc293_a]Swap Odd and Even

[abc293_a]Swap Odd and Even

Problem Statement

You are given a string SS of even length consisting of lowercase English letters. Let S|S| be the length of SS, and SiS_i be the ii-th character of SS.

Perform the following operation for each i=1,2,ldots,fracS2i = 1, 2, \\ldots, \\frac{|S|}{2} in this order, and print the final SS.

  • Swap S2i1S_{2i-1} and S2iS_{2i}.

Constraints

  • SS is a string of even length consisting of lowercase English letters.
  • The length of SS is at most 100100.

Input

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

SS

Output

Print the answer.


Sample Input 1

abcdef

Sample Output 1

badcfe

Initially, S=S = abcdef.
Performing the operation for i=1i = 1 swaps S1S_1 and S2S_2, making S=S = bacdef.
Performing the operation for i=2i = 2 swaps S3S_3 and S4S_4, making S=S = badcef.
Performing the operation for i=3i = 3 swaps S5S_5 and S6S_6, making S=S = badcfe.
Thus, badcfe should be printed.


Sample Input 2

aaaa

Sample Output 2

aaaa

Sample Input 3

atcoderbeginnercontest

Sample Output 3

taocedbrgeniencrnoetts