#abc151a. [abc151_a]Next Alphabet
[abc151_a]Next Alphabet
Problem Statement
Given is a lowercase English letter that is not z
. Print the letter that follows in alphabetical order.
Constraints
- is a lowercase English letter that is not
z
.
Input
Input is given from Standard Input in the following format:
Output
Print the letter that follows 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
.