How to Hide the "Uptime Robot Setup" Admin Menu

function plt_hide_powies_uptime_robot_menus() {
	//Hide the "Settings → Uptime Robot Setup" menu.
	remove_submenu_page('options-general.php', 'powies-uptime-robot/pum_settings.php');
}

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

Where do I put this code?