How to Hide the "Russian Number Comments" Admin Menu

function plt_hide_russian_number_comments_menus() {
	//Hide the "Settings → Russian Number Comments" menu.
	remove_submenu_page('options-general.php', 'russian-number-comments.php');
}

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

Where do I put this code?