Write a program called LineCensor that asks the user for a word to replace in some text, and the word to replace it with. The program then reads a line of text from the user and echoes the line back to screen replacing all occurrences of the first word with the second word. It only replaces the word being censored when it occurs independently in a line (i.e. not as a part of another word). Enter word to censor: cat Enter word to replace it: xxxxx Enter line of text to censor: The cat was curious about the other cat’s string The xxxxx was curious about the other cat’s string