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

int main() {
	char b[] = {'h', 'e', 'l', 'l', 'o', '\0'};
	string a;
	
	cin >> a;
	
	if (a == b){
		cout << "Hello to you";
	}
	return 0;
}