mood = input("Hey! How are you feeling today? 😊 ")
if "happy" in mood.lower(): print("Yay! Keep shining, sunshine ☀️") elif "sad" in mood.lower(): print("Aww :( sending virtual hugs 🤍 everything will be okay soon.") elif "angry" in mood.lower(): print("Take a deep breath 😮💨 You got this, don’t let it ruin your day.") elif "tired" in mood.lower(): print("You deserve some rest 😴 Don’t overdo it, okay?") else: print("Whatever you’re feeling, I’m proud of you for showing up today 💪")