101510: [AtCoder]ABC151 A - Next Alphabet

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $100$ points

Problem Statement

Given is a lowercase English letter $C$ that is not z. Print the letter that follows $C$ in alphabetical order.

Constraints

  • $C$ is a lowercase English letter that is not z.

Input

Input is given from Standard Input in the following format:

$C$

Output

Print the letter that follows $C$ in alphabetical order.


Sample Input 1

a

Sample Output 1

b

a is followed by b.


Sample Input 2

y

Sample Output 2

z

y is followed by z.

Input

题意翻译

# 题目翻译 ## 题目描述 输入一个小写字母 $z$ ,输出它按字典序排序的下一位。 ## 输入格式 按以下的格式输入。 ``` $ C $ ``` ## 输出格式 输出它按字典序排序的下一位。 ## 提示 $z$是小写字母。 ### 样例说明 1 ‘a’的下一位是‘b’。 ### 样例说明 2 ‘y’的下一位是‘z’。

加入题单

算法标签: