# ⭐ Mini Project 1 — Mad Libs Game 📖
# A word game where you fill in blanks with random words to create a funny story!
adjective1 = input("Enter an adjective (describing word): ")
noun1 = input("Enter a noun (person, place, or thing): ")
adjective2 = input("Enter another adjective: ")
verb_ing = input("Enter a verb ending in -ing (action): ")
adjective3 = input("Enter one more adjective: ")
print("\n--- Your Mad Libs Story ---")
print(f"Today I went to a {adjective1} zoo.")
print(f"In an exhibit, I saw a {noun1}.")
print(f"The {noun1} was {adjective2} and kept {verb_ing}.")
print(f"I was so {adjective3}!")