#include <iostream>using namespace std;string s1 = "three";string s2 = "two";string s3 = s1 + ", " + s2;s3 += ", one";string sGo = s3 + ", " + "go!";//sGo is "three, two, one, go!"cout << "sGo: " << sGo;