#include <iostream>using namespace std;int main(){ string a; //文字變數 cin >> a; //輸入變數 cout << "hello, " << a; //輸出結果}