How to Hide the "Intl Telephone Input" Admin Menu

function plt_hide_international_telephone_input_with_flags_and_dial_codes_menus() {
	//Hide the "Settings → Intl Telephone Input" menu.
	remove_submenu_page('options-general.php', 'international-telephone-input-with-flags-and-dial-codes');
}

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

Where do I put this code?