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

int main() {
	// your code goes here
	cout << "てｓｔ" << endl;
	string str;
	cin >> str;
	cout << str << endl;
	return 0;
}