#39412: C++答案


yp11251200@yphs.tp.edu.tw (801-26徐立權)


#include <iostream>
#include <string>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
 
int main(int argc, char** argv) {
string n;
cin>>n;
cout<<"hello, "<<n<<endl;
return 0;
}