sat = ("sat") sun = ("sun") yes = ("yes") day = input("What day is it?") hol = input("Is it the holidays?") if hol == yes or day == sat or day == sun: print("Sleep in!") else: ("Seize the dayyyyy!!")