A - Next Alphabet Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 100

問題文

z でない英小文字 C が与えられます。アルファベット順で C の次の文字を出力してください。

制約

  • Cz でない英小文字

入力

入力は以下の形式で標準入力から与えられる。

C

出力

アルファベット順で C の次の文字を出力せよ。


入力例 1

a

出力例 1

b

a の次は b です。


入力例 2

y

出力例 2

z

y の次は z です。

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.