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