import time name = input("Hello, what is your name? ") time.sleep(2) print("Hello " + name) feeling = input("How are you today? ") time.sleep(2) if "good" in feeling.lower(): print("I’m feeling good too!") else: print("I’m sorry to hear that!") Copyright Simon Johnson 2021