Depending on where you want to add Ad sense code there are different ways..
For eg: if you want to add code to blog list on homepage not on single post and single page , you need to edit index.php add after
<main id="main" class="site-main" role="main">
but with conditional checked whether you want to display that on pages and
singular posts or not..
Like if you want this on only posts list page…
Add code like this
if( ! is_singular() ) {
/* Adsense code here */
}
Don’t forget these changes must be done in a child theme otherwise when theme updates it gets overridden.