12 lines
202 B
C++
12 lines
202 B
C++
#include <bits/stdc++.h>
|
|
|
|
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;
|
|
} |