How to Hide the "GraphComment 1" Admin Menu

function plt_hide_graphcomment_comment_system_menus() {
	//Hide the "GraphComment                     1" menu.
	remove_menu_page('graphcomment');
}

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

Where do I put this code?