#Lutece0742. Decode the Message
Decode the Message
Migrated from Lutece 742 Decode the Message
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Two of your friends Alex and Adam have developed a secret system for sending messages to each other. The only problem is that the system has turned out to be too hard to do by hand. Therefore, Alex has asked for your help to write a program to decode the secret messages. After making you swear never to reveal the system, he explains that the coded message consists of one or more words, only consisting of lower case characters a
-z
, seperated by spaces. Each word corresponds to one character, a
-z
or space, and is found by adding the value of each character in the word and taking the remainder when dividing by . a
is assigned the value , b
is assigned the value and so on up to z
which is assigned the value . Based on the calculated remainder the values corresponds to a
-z
as before, and the value corresponds to a space.
Help your friend write a program which takes a coded message and outputs the decoded message.
Input
The first line of the input consists of a single integer , the number of test cases. Each test case consists of a single line containing a secret message. The secret message contains only lower case characters and spaces, and there are only spaces between words and never two or more consecutive spaces.
Output
For each test case, output the corresponding decoded message.
Samples
2
a b c d e f
it is late o green wrong whole
abcdef
a horse
Note
Each secret message contains no more than characters
Resources
IDI Open Programming Contest April 21st, 2012 - NTNU