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 I bed snoozing!') else: print('Wake up now!')