#P245. 练40.3 ASCII码

练40.3 ASCII码

Description

I believe everyone knows the famous ASCII code. Your task is to input numbers (representing ASCII codes) and output the corresponding characters.

Input Format

The first line contains an integer T (1≤T≤1000).
The next T lines contain positive integers separated by whitespace (including spaces, newlines, and tabs).
These integers will not be less than 32.

Output Format

Output the corresponding characters in a single line. (Do not output any extra characters)

Sample

13
72 101 108 108 111 44 32 119 111 114 108 100 33
Hello, world!