#CODE = #B017
# Mad Libs Game
print("Welcome to the Mad Libs game!")
noun = input("Enter a noun: ")
verb = input("Enter a verb: ")
adjective = input("Enter an adjective: ")
place = input("Enter a place: ")
# Create a funny story
story = f"Once upon a time, in a {adjective} {place}, there was a {noun} that loved to {verb} all day long."
print("Here is your Mad Libs story:")
print(story)
input()