#include <bits/stdc++.h>
using namespace std;
int main() {
	char n;
	cin>>n;
	if(int(n)==90){
	    n=65;
	    cout<<char(n);
	}else if(int(n)==122){
		n=97;
		cout<<char(n);
	}else{
		n+=1;
		cout<<char(n);
	}
}    
/**************************************************************
	Problem: 1969
	User: wangyiyang
	Language: C++
	Result: Accepted
	Time:14 ms
	Memory:2072 kb
****************************************************************/