#include <iostream>
using namespace std;
int main ()
{
string word;
while (cin>>word)
cout<<"hello, "<< word <<" \n";
return 0;
}