#CODE = #B015
# Simple Chatbot
name = input("Hello! What's your name? \n")
print(f"Nice to meet you, {name}! \n")
# Chatbot responses based on input
feeling = input("How are you feeling today? \n")
if feeling.lower() == "bad":
print("I'm sorry to hear that. I hope you feel better soon! \n")
else:
print("That's great to hear! \n")
# Favorite color
color = input("What's your favorite color? \n")
print(f"{color} is a beautiful color! \n")
input()