display sticky post outside loop and exclude from loop

Before your loop do:

$args = array(
    'ignore_sticky_posts' => 1
);
$query = new WP_Query( $args );
// The Loop
while ( $query->have_posts() ) : $query->the_post();
    echo '<li>';
    the_title();
    echo '</li>';
endwhile;