Let's assign a number to every letter in the alphabet. The letters from "A" to "Z" will be assigned to the numbers from 0 to 25 chronologically. "A" will be 0, "B" will be 1, "C" will be 2, and so on.
Given a number, can you output the corresponding letter?
Better yet, can you do this times?
Input Specification
The first line contains .
Each of the next lines contains a number in the range of 0 to 25, representing the letters from A to Z.
Output Specification
For each number, output the corresponding letter on a seperate line. Note: only output uppercase letters.
Sample Input
5
0
1
2
3
25
Sample Output
A
B
C
D
Z
Comments