假设a<b<c,c-a<26,如a对应字母A,输入b,c输出对应字母
int main() { int a,b,c; scanf("%d%d%d",&a,&b,&c); printf("%c,%c",'A' + b-a,'A' + c-a); return 0; }