#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#define N 105
int main()
{
char ch[N] = {0};
char* p;
p = ch;
gets(ch);
while (*p != '\0')
{
if (*p >= 'A' && *p <= 'Z')
{
*p = (*p - 'A' + 4) % 26 + 'A';//大写处理,易错
}
else if (*p >= 'a' && *p <= 'z')
{
*p = (*p - 'a' + 4) % 26 + 'a';//小写处理,易错
}
p++;
}
puts(ch);
return 0;
}