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