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