Problem2344--ASCII code

2344: ASCII code

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

Description

Time Limit: 2 sec / Memory Limit: 1024 MB

Score : 100100 points

Problem Statement

The ASCII values of the lowercase English letters a, b, \ldots, z are 97,98,\ldots,12297,98,,122 in this order.
Given an integer NN between 9797 and 122122, print the letter whose ASCII value is NN.

Constraints

  • NN is an integer between 9797 and 122122 (inclusive).

Input

Input is given from Standard Input in the following format:
NN

Output

Print the answer.

Sample Input Copy

97

Sample Output Copy

a

HINT

97 is the ASCII value of a.

Source/Category