Problem2111--ABC151A - Next Alphabet

2111: ABC151A - Next Alphabet

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

给定一个小写英文字母,保证该字母不是z,打印出字母表中该字母的下一个字母。

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

Input is given from Standard Input in the following format:

C 

Output

Output

Print the letter that follows C in alphabetical order.

Sample Input Copy

a

Sample Output Copy

b

Source/Category