500
#Not a Vocabulary, but this is another string question!
Create code that will prompt the user for two words (one verb and one noun), and replace the following string with them:
long_string = "To VERB or not to VERB: that is the NOUN"
verb = input("Enter a verb")
noun = input("Enter a noun")
long_string.replace("VERB",verb,2)
long_string.replace(""NOUN",noun)