Problem1745--Hello, world!

1745: Hello, world!

[Creator : ]
Time Limit : 1 sec  Memory Limit : 128 MB

Description

对于每一种编程语言,我们首先学的一般都是输出hello,word!
因此我们给定n个数,要求你输出对应ASCII码表的值。

Input

第一行一个数n,代表要输入数字的个数。
第二行输入n个数。

Output

这n个数对应的ASCII码表的值。

Sample Input Copy

13
72 101 108 108 111 44 32 119 111 114 108 100 33

Sample Output Copy

Hello, world!

Source/Category