#abc252a. A - ASCII code

A - ASCII code

Score : 100100 points

问题描述

ASCII码中,小写英文字母 a, b, \ldots, z 的值依次为 97,98,,12297, 98, \ldots, 122

给定一个整数 NN,其范围在 9797122122 之间,请输出ASCII值为 NN 的字母。

以上为通义千问 qwen-max 翻译,仅供参考。

Problem Statement

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

update @ 2024/3/10 10:44:58