day = input("What day of the week is it? (mon, tue, wed etc.) ") hol = input("Is it a holiday? ") if day == "sat" or "sun" : print("You should stay in bed snoozing!") else : if hol == "yes" : print("You should stay in bed snoozing!") else : if hol == "no" : print("You have a long day ahead of you!")