day = input("What is it? (mon, tue, wed, thu, fri, sat, sun):") holiday = input("Is it a holiday? (yes or no):") if holiday == "yes" or day == "sat" or day == "sun": print("You should stay in bed snoozing!") else: print("Wake up!")