
#include#include #include char dstStr[201]; int main () { while(scanf("%s",dstStr) != EOF) { int len = strlen(dstStr); for(int i=len-1;i>=0;i--) printf("%c",dstStr[i]); printf("\n"); } return 0; } /************************************************************** Problem: 1055 User: liuguiyangnwpu Language: C++ Result: Accepted Time:0 ms Memory:1020 kb ****************************************************************/