day = input('What day of the week is it? ') holiday = input('Is it a holiday? ') print(' ') if holiday == 'yes' or day == 'sat' or day == 'sun': print('You should stay in bed snoozing!') else: print('You should not stay in bed snoozing!')