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

int main() {
    string str;
    while (cin >> str) { // 注意 while 处理多个 case

        reverse(&str[0],&str[4]);	//C++自带的翻转函数 注意头文件 <algorithm>
        cout <<str<< endl;
    }
}
// 64 位输出请用 printf("%lld")