How to Hide atec System Info Admin Menus

function plt_hide_atec_system_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 → System Info" menu.
	remove_submenu_page('atec_group', 'atec_wpsi');
}

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

Where do I put this code?