102520: [AtCoder]ABC252 A - ASCII code
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
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:
$N$
Output
Print the answer.
Sample Input 1
97
Sample Output 1
a
$97$ is the ASCII value of a
.
Sample Input 2
122
Sample Output 2
z
Input
题意翻译
输入一个数 $N$$(97<N<122)$,输出在ASCLL表中相对应的字符。Output
分数:100分
部分
问题描述
小写英文字母`a`、`b`、$\ldots$、`z`的ASCII值按此顺序为$97,98,\ldots,122$。
给定一个介于$97$和$122$之间的整数$N$,输出ASCII值为$N$的字母。
部分
约束
* $N$是一个介于$97$和$122$之间的整数(包括$97$和$122$)。
部分
输入格式
从标准输入按以下格式给出输入:
```
$N$
```
部分
输出格式
输出答案。
部分
样例输入1
```
97
```
部分
样例输出1
```
a
```
$97$是字母`a`的ASCII值。
部分
样例输入2
```
122
```
部分
样例输出2
```
z
```