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

int main() {
	// your code goes here
	string s="9apD()6dmapE";
	for(int i=s.size()-1;i>=0;i--)
		cout<<s[i];
	return 0;
}