照題目要求輸出即可。
C++(4ms, 430KB)
/*******************************************************/
/* Zerojudge a001 */
/* Author: Maplewing [at] knightzone.studio */
/* Version: 2012/04/03 */
/*******************************************************/
#include<iostream>
#include<cstdio>
using namespace std;
int main(){
string s;
while( getline( cin, s ) ){
printf( "hello, %s\n", s.c_str() );
}
return 0;
}