day = input ("what day of the week is it?") holiday = input ("is it a holiday?") if holiday == 'yes' or day in ['sat', 'sun']: print("you should stay in bed snoozing!") else: print("time to get up and start your day!")