#include <stdio.h>

int main(void) {

char buchstabe = 'A';
int schluessel;

scanf("%c", &buchstabe);
scanf("%d", &schluessel);

buchstabe = buchstabe + schluessel;

printf ("!Buchstabe!: %c", buchstabe);

return 0;

}
