#abc252a. A - ASCII code
A - ASCII code
Score : points
问题描述
ASCII码中,小写英文字母 a, b, , z 的值依次为 。
给定一个整数 ,其范围在 和 之间,请输出ASCII值为 的字母。
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
The ASCII values of the lowercase English letters a, b, , z are in this order.
Given an integer between and , print the letter whose ASCII value is .
Constraints
- is an integer between and (inclusive).
Input
Input is given from Standard Input in the following format:
Output
Print the answer.
Sample Input 1
97
Sample Output 1
a
is the ASCII value of a.
Sample Input 2
122
Sample Output 2
z
update @ 2024/3/10 10:44:58