#include #include using namespace std; int main() { string str1, str2; str1 = "Hello, "; str2 = "world!"; cout << str1 + str2 << endl; return 0; }