#include <iostream>
#include <iomanip>
#include <string>
#include <sstream>

using namespace std;


int main(){
    
    string str2;
    cout << "Enter the contents of string 2";
    //cin >> str2;//Cin only takes in information until a blank space.
    getline(cin, str2);
    cout << str2;
    
    string str3="Hello World";
    string str4="Hello World";
    
    if (str3 == str4){
        cout << "They're equal!";
    }
    else {
        cout << "They're not equal";
    }
    
return 0;
}