#include<iostream>
#include<string>
#include<algorithm>
using namespace std;
int main()
{
//注意该题的输入有点恶心,单词之间可能包含多个空格;
//使用getline(cin,str),接收一个字符串,可以接收空格并输出
    string str;
    getline(cin,str);//接收一个字符串,可以接收空格并输出
    reverse(str.begin(),str.end());//字符串反转,需包含头文件#include<algorithm>
    cout<<str;
    return 0;
}