while True: day = input("What day of the week is it? ") is_holiday = input("Is it a holiday? ") if (is_holiday == "yes") or (day == "sat" or day == "sun"): print("You should stay in bed snoozing!") else: print("You should not stay in bed snoozing!")