#include<iostream>#include <string>using namespace std;main(){ string name; while(getline(cin,name)){ cout<<"Hey "<<name<<endl;}}
be careful!