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

int main() {
    string str; 
    getline(cin, str);

    transform(str.begin(), str.end(), str.begin(), ::tolower);
    reverse(str.begin(), str.end());
    
    cout << str << endl;
    return 0;
}