#abc252a. [abc252_a]ASCII code

[abc252_a]ASCII code

Problem Statement

The ASCII values of the lowercase English letters a, b, ldots\\ldots, z are 97,98,ldots,12297,98,\\ldots,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 1

97

Sample Output 1

a

9797 is the ASCII value of a.


Sample Input 2

122

Sample Output 2

z