#include <iostream>

namespace c2cpp {

    int main() {
        using namespace std;

        string s;

        s = "hello ";
        s = s + "world ";

        // Shouldn't the following line be the same thing?
        // s = "hello " + "world ";

        // What about this?
        // s = s + 100;

        // Or this?
        // s += 100;  // Try changing 100 to 101 to see what's going on

        cout << s << "c" << 2 << "cpp!" << endl;
        return 0;
    }

} // namespace c2cpp

int main() {
    return c2cpp::main();
}
