day_of_week = input("What day of the week is it? ").lower() is_holiday = input("Is it a holiday? (yes/no) ").lower() if day_of_week in ['sat', 'sun'] or is_holiday == 'yes': print("You should stay in bed snoozing!") else: print("It's time to get up and start your day!")