day = input( "What day of the week is it? " ) holiday = input( "Is it a holiday? " ) if day == "sun" : print( "You should stay in bed snoozing!" ) if day == "sat" : print( "You should stay in bed snoozing!" ) elif holiday == "yes" : print( "You should stay in bed snoozing!" ) else : print( "Go outside you monkey!" )