15003 - Romeo and Juliet   

Description

Romeo and Juliet are lovers from two feuding families. Because their relationship must remain secret, they communicate using a special code. They write five ASCII numbers, which are then converted into their corresponding characters using an ASCII table (https://www.ascii-code.com/).

The decoding process works as follows:

  • Read five ASCII numbers.
  • Convert each number into its corresponding character using ASCII.
  • Output the five characters in the same order.

Since manually converting ASCII numbers into text is troublesome, Romeo decides to write a program to automate the process.

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

Input

5 integer number

Output

The corresponding word

Sample Input  Download

Sample Output  Download

Tags




Discuss