It goes "BLEEP" when one of these strings are input.
int main()
{
vector<string> words();
words[0] == "roller coasters";
words[1] == "waiting";
words[2] == "people who talk on the phone while driving";
words[3] == "wars";
string temp;
while (cin >> temp)
words.push_back(temp);
for (int i = 0; i < words.size(); ++i)
if (words[i -1] == words[i])
cout << "BLEEP" << endl;
return 0;
}