Mr A doesn't believe that characters are stored as integers. You want to prove him wrong.
Your Task:
Write a program to convert characters to their ASCII representation.
Input
The first line of input consists of a single number, n. This denotes the number of letters that follows. n is between 1 and 10000.
For the following n lines of input, there will be a single character in each line.
Output
Output the ASCII representation of the input in decimal (base 10) format.
Sample Input
5
a
b
C
d
e
Sample Output
97
98
67
100
101
Note
You can print the number out directly after you input it. No need to store everything.