Use like this:
<?php
while ( have_posts() ): the_post();
// Display post
if ( have_posts() ):
the_post_thumbnail(); //call image that you set in featured image in each post on right sidebar of admin panel.
the_content(); //call content
endif;
endwhile;
?>