Div expand to fit

HTML

<div id="wrap">
    <div id="one"></div>
    <div id="two"></div>
</div>

CSS

div#wrap {
    width: 100%;
    height: 200px;
    background: aqua;
    padding: 10px;
    display:flex;
    align-items:flex-end;
    
    
}
div#one {    
    width: 25%;
    height: 100px;
    background: red;
    float: left;
    
}
div#two {
    width:75%;
    height: 100px;
    background: black;
    
}