401700: GYM100514 L Key
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
L. Keytime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard output
You are given an encrypted string, encrypted using a certain algorithm.Decrypt it !
Each character of the encrypted string has ASCII code between 0 and 255 inclusive.So you're given the ASCII code of each character.It's guaranteed that the original string is made of lower case English letters.
InputThe first line of input contains integer n, the size of the encrypted string. (7 ≤ n ≤ 105).
The second line contains n integers between 0 and 255 inclusive, speared by space.
OutputPrint the original string.
ExamplesInput7Output
17 3 8 20 25 15 7
charzehInput
7Output
11 4 28 21 6 12 6
yousefiInput
8Output
1 14 16 3 7 7 2 6
seyedmmt