#include <iostream>
using namespace std;
int main() {
	string str;
	cin >> str;
	if(str == "Let's") {
		cout << "Hello World!" << endl;
	}
	else if(str == "96") {
		cout << "4656" << endl;
	}
	return 0;
}