day= input("What day of the week is it? ") holiday= input("Is it a holiday? ") if day == "sat" or "sun" and holiday == "yes": print("You should saty in bed snoozing!") else: print("Get working!")