14977 - Juliet and Romeo   

Description

Romeo and Juliet are lovers from two feuding families. Because their relationship must remain secret, they use a secret code to communicate. Each word is made up of exactly 5 letters.

To encode a word, they use the ASCII value (https://www.ascii-code.com/)  of each letter and add 1 to it. To decode a message, they subtract 1 from each number and convert the result to its corresponding ASCII character.

For example, instead of using the number 65 to refer to the ASCII character 'A', they would use the number 66 instead. 

Because Romeo has difficulty decoding Juliet’s messages using the new secret code, he decides to write a program that automatically converts the numbers into the correct word.

Please help Romeo complete the program so that he can communicate with his beloved Juliet!

Input

5 integer numbers

Output

A string that represents the translated version of the code

Sample Input  Download

Sample Output  Download




Discuss