Files
python/TangDou/KaoShi/算字符.cpp
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

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;
}