#include <iostream>
using namespace std;
int main()
{
string a;
getline(cin,a);
cout<<"Go, "<<a<<", go go";
return 0;
}