#include <iostream>using namespace std;
int main() { //建立一個字串(名字) string x; //讓電腦輸入名字 cin>>x; //輸出hello, 名字 cout<<"Hello, "<<x;
return 0;}