How to Hide the "Swift Performance" Admin Menu

function plt_hide_swift_performance_lite_menus() {
	//Hide the "Tools → Swift Performance" menu.
	remove_submenu_page('tools.php', 'swift-performance');
}

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

Where do I put this code?