# Online Python compiler (interpreter) to run Python online.
# Write Python 3 code in this online editor and run it.
print("Hi, I'm the AI bot")
name=input()
print("Nice to meet you ",name)
print("how are you feeling?(good/bad)")
mood=input().lower()
if mood=="good":
print("I'm glad to hear that")
else:
print("I see, sometimes its hard to put feelings into words")
print("It was nice chatting with you ",name," Goodbye!")