#include <iostream>
using namespace std;

int main() {
	string a = "String";
	cout << a;
	return 0;
}