#AT2173. A - ASCII code

A - ASCII code

当前没有测试数据。

A - ASCII code

Score : $100$ points

Problem Statement

The ASCII values of the lowercase English letters a, b, $\ldots$, z are $97,98,\ldots,122$ in this order.

Given an integer $N$ between $97$ and $122$, print the letter whose ASCII value is $N$.

Constraints

  • $N$ is an integer between $97$ and $122$ (inclusive).

Input

Input is given from Standard Input in the following format:

NN

Output

Print the answer.


97
a

$97$ is the ASCII value of a.


122
z