This need to be changed in current active theme file.
Find it in /wp-content/themes/YOUR_ACTIVE_THEME_FOLDER/page.php
Open and find this:
<?php endwhile; .......
Add this code before:
<?php comments_template( '', true ); ?>
The final code should be:
<?php comments_template( '', true ); ?>
<?php endwhile; .......