#includevoid main() { char str[20],c,cc; scanf("%s",str); c=str[0]; cc=c-'A'; cc+=4; cc%=26; cc+='A'; printf("%c\n",cc);}