# Mad libs are word games which require a person to provide various words to complete a short and fun story. Complete the following program
#to make a Mad lib of your own
name = input("Enter a name: " )
location = input("Enter a location: ")
number = input("Enter a number: ")
pluralNoun = input("Enter a plural noun: ")
print(
f"{name} went to {location} to buy {number} different types of {pluralNoun}. "
f"The moment {name} stepped inside, the air was filled with a bright, buzzing energy—almost like the whole place whispered *whoooosh* with excitement. "
f"The towering, colorful shelves stretched so high they could practically poke the clouds, or at least that's how it felt! "
f"After wandering down the endlessly long aisles, {name} finally spotted the most magnificent, unbelievably perfect {pluralNoun} anyone had ever seen—so perfect they practically sparkled. "
f"With a triumphant *ta‑da!*, {name} placed them carefully into the cart. "
f"As {name} walked out of {location}, the sunshine burst across the sky with a brilliant *shiiiing*, like a spotlight celebrating the moment. "
f"But suddenly—*WHOOOOSH!*—a wild gust of wind roared through the parking lot, nearly blasting the {pluralNoun} into orbit. "
f'{name} held on tightly, refusing to let a little hurricane-level breeze ruin the day. '
f"On the way home, {name} noticed a ridiculously talented street performer juggling flaming torches with dramatic *fwip‑fwip‑fwip* sounds echoing through the air. "
f"The crowd gasped in awe—*oooh! aaah!*—and {name} couldn't help but grin. "
f"Continuing down the sidewalk, {name} discovered a tiny lost puppy letting out the softest little *yip‑yip* as it wagged its tail with impossible enthusiasm, as if greeting a long‑lost friend. "
f"The puppy curled up next to the precious {pluralNoun}, guarding them like priceless treasure. "
f"By the time {name} reached home, the sky glowed with a warm, golden sunset—so beautiful it could make even a statue sigh. "
f"It had been an unbelievably adventurous day, bursting with surprises, sounds, and excitement, and {name} knew it was a day that would be remembered forever."
)
To embed this project on your website, copy the following code and paste it into your website's HTML: