100 atcoder#ABC151A. [ABC151A] Next Alphabet
[ABC151A] Next Alphabet
Score : points
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.
a
b
a
is followed by b
.
y
z
y
is followed by z
.