#include <stdio.h> #include <string.h> int main() { char str[1002]; while (scanf("%s", str) != EOF) { // 注意 while 处理多个 case // 64 位输出请用 printf("%lld") to int cnt = strlen(str); //printf("%s %d\n", str, cnt); for(int i = cnt - 1; i >= 0; i--) { printf("%c", str[i]); } printf("\n"); } return 0; }