How to Hide atec Cache Info Admin Menus

function plt_hide_atec_cache_info_menus() {
	//Hide the "atec-systems" menu.
	remove_menu_page('atec_group');
	//Hide the "atec-systems → Dashboard" menu.
	remove_submenu_page('atec_group', 'atec_group');
	//Hide the "atec-systems → Cache Info" menu.
	remove_submenu_page('atec_group', 'atec_wpci');
}

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

Where do I put this code?