How to Hide the "Math CAPTCHA" Admin Menu

function plt_hide_hsarticle_math_captcha_forms_menus() {
	//Hide the "Math CAPTCHA" menu.
	remove_menu_page('hsarticle-math-captcha-forms');
}

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

Where do I put this code?