How to Hide the "Delete Comments" Admin Menu

function plt_hide_delete_all_comments_of_website_menus() {
	//Hide the "Tools → Delete Comments" menu.
	remove_submenu_page('tools.php', 'delete_comment');
}

add_action('admin_menu', 'plt_hide_delete_all_comments_of_website_menus', 1000000000);

Where do I put this code?