#include<iostream>
using namespace std;
int main (){
string s; //建立字串
getline(cin,s); //一次讀取一段包含空白、長度不固定的文字
cout<< "hello, "<< s;
return 0;
}