#20059: c++ AC解答


s020406@apps.ntpc.edu.tw (急速領域最強使者(小草))


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