#55504: answer


yp11550050@yphs.tp.edu.tw (711-18吳俊佑)


#include <iostream>
#include <string>

using namespace std;

main(){
    string name;
    //getline(來源,放的變數)
    getline(cin,name);


    cout<<"Go, "<< name << ", go go";


}