day = input("Enter the day of the week ").lower() holiday = input("Is it a holiday? ").lower() if holiday == "yes" or day in ['sat', 'sun']: print("You should stay in bed snoozing!") else: print("Wake Up Now!!")