人名可能會有空格,所以要用getline()讀取一整行哦
#include <iostream>using namespace std;
int main(){ string A; getline(cin,A); cout<<"Go, "<<A<<", go go"; return 0;}