How to Hide the "SSO for Entra ID" Admin Menu

function plt_hide_sso_for_azure_ad_menus() {
	//Hide the "Settings → SSO for Entra ID" menu.
	remove_submenu_page('options-general.php', 'sso_for_azure_ad_options');
}

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

Where do I put this code?