How to Hide the "Remove Help & Screen tabs" Admin Menu

function plt_hide_remove_help_tab_and_screen_option_menus() {
	//Hide the "Settings → Remove Help & Screen tabs" menu.
	remove_submenu_page('options-general.php', 'rmsh-help-screen');
}

add_action('admin_menu', 'plt_hide_remove_help_tab_and_screen_option_menus', 11);

Where do I put this code?