#include <iostream>using namespace std;enum PreciousMetal { Platinum, Gold, Silver};enum Planet { Mercury, Venus, Earth};PreciousMetal gold = Gold;Planet earth = Earth;cout << "gold is " << gold << "\n";cout << "earth is " << earth;