rint "Censored" if userInput contains the word "darn", else print userInput. End with newline.

#include
#include
using namespace std;

int main() {
string userInput;

userInput = "That darn cat.";

/* Your solution goes here */

return 0;
}