#include <iostream>
using namespace std;
int main(){
string a; //宣告1個名為a變數(字串)
cin>>a; //輸入變數a的值
cout<<"hello, "<<a; //輸出題目要求的格式
return 0;
}