#include<bits/stdc++.h> //反转的递归写法
using namespace std;
void f(string b,int t)
{
if(t==-1) return ; //递归出口
cout<<b[t]; //解决问题
f(b,t-1); //划分子问题
}
int main()
{
string s;
while(cin>>s)
{
f(s,s.size()-1);
cout<<endl;
}
return 0;
}