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