#include<bits/stdc++.h> int main() { char s[200]; int i; gets(s); for(i = strlen(s)-1; i >= 0; i--) { printf("%c",s[i]); } return 0; }