day = input("What day is it?: ") holiday = input("Is it a holiday?: ") if holiday == "yes" or day in ("saturday", "sunday"): print("You should stay in bed snoozing!") else: print("Wake up and get ready for the day!")