#

class MyDoctor:

    def sayHi(self):
        print("Hi!")

    def sayBye(self):
        print("Bye!")
    
    def askDocQuestion(self):
        question = input("Do you want a health tip?  Yes or No.")

        #if yes, python says: Good! Eat less sugar.
        #if !yes, Ok, see you next time.

        if question == "yes" or question == "y":
            print("Good! Eat less sugar.")
        else:
            print("Ok, see you next time.")


myDoctor = MyDoctor()
myDoctor.askDocQuestion()
    
