Addition ain't simple

3.7

100 votes
Easy
Problem

Jack is awesome. His friends call him little Einstein. To test him, his friends gave him a string. They told him to add the string with its reverse string and follow these rules:

  1. Every ith character of string will be added to every ith character of reverse string.
  2. Both string will contain only lower case alphabets(a-z).
  3. Eg:- a+a=b,a+c=d,z+a=a (Refer to sample test cases for more details)

Input:

First line contains a value N denoting number of test cases. Next N lines contains string str.

Output:

For every string str output the string that Jack's friends wants from him.

Constraints

1 <= N <= 10

1 <= str <= 10^5

Sample Input
4
hello
codeapocalypse
programming
world
Sample Output
wqxqw
hhtdmqrrqmdthh
wfxtebetxfw
aajaa
Time Limit: 5
Memory Limit: 256
Source Limit:
Editor Image

?