parimpar

Time limit: 1s Memory limit: 64MB Input: Output:

Task

You are given an even length string containing only lowercase English letters. Print the string obtained after swapping the characters on positions ii and i+1i+1 for all odd ii.

In other words, we will swap the characters on positions 11 and 22, 33 and 44, 55 and 66 etc.

Input data

The first line of the input contains SS.

Output data

The first line of the output contains SS, after the swaps have been made.

Constraints and clarifications

  • 11 \leq length of S100S \leq 100;

Example 1

stdin

abcdef

stdout

badcfe

Explanation

We first swap a and b, then c and d and then, e and f.

Example 2

stdin

kilonova

stdout

ikolonav

Log in or sign up to be able to send submissions!