#AT1487. A - Next Alphabet

A - Next Alphabet

A - Next Alphabet

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:

CC

Output

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


a
b

a is followed by b.


y
z

y is followed by z.