#include <iostream> using namespace std; int main(int argc, char** argv) { string str; //宣告字串變數 cin >> str; //輸入的字串 cout << "hello, " << str; //印出的字串 return 0; }