day = input('what day of the week is it?') holiday = input('is it a holiday?') if holiday == 'yes' : print('you should stay in bed snoozing!') elif day == 'sat' : print('then stay sleeping') elif day == 'sun' : print('go to sleep again')