#include #include using namespace std; const string PHRASE_A {"I saw the big brown bear."}; const string PHRASE_B {"The big brown bear saw me."}; const string PHRASE_C {"Oh! What a frightening experience!"}; int main() { string output; // Print ABC cout << PHRASE_A << endl; cout << PHRASE_B << endl; cout << PHRASE_C << endl; cout << endl; //output = PHRASE_A + "\n" + ... // Print ACB // Print BAC // Print BCA // Print CAB // Print CBA return 0; }