Answer:
#include <iostream>
#include <string>
using namespace std;
int main() {
string wOne, wTwo, temp;
cout << "Enter a word:";
cin >> wOne;
cout << "Enter a word:";
cin >> wTwo;
temp = wOne;
wOne = wTwo;
wTwo = temp;
cout << wOne << endl;
cout << wTwo << endl;
}