#include <algorithm>
#include <iostream>
using namespace std;

int main() {
    string str;
    getline(cin, str); // 获取字符串

    reverse(str.begin(), str.end());// 翻转字符串

    cout << str << endl;

    return 0;
}
// 64 位输出请用 printf("%lld")