#include using namespace std; int main() { char c; int n; scanf("%c %d", &c, &n); if (c + n > 'z') printf("*"); else printf("%c", c + n); return 0; }