Mika studied a new way to encrypt massages.
Given a string which length is even, Mika do the following process:
First Mika divides it into two parts from the middle. Then Mika writes the first part on the first line, the second part on the second line. Finally, Mika reads the string from the first column to the last column.
For example: There is a string called "

". We divides it into two parts "

" and "

"
Then we write in the following way:

Finally, Mika reads it from the first column to the last column, which is "

". That is the string Mika gets.
Now given you the string after encrypting, Willis wants to know the string before encrypting. Can you help him?