#include<iostream> #include<string> using namespace std; string s; int main(){ getline(cin,s) for(int i=s.size()-1;i>=0;i--) cout<<s[i]; return 0; }