#include<iostream>
using namespace std;

class Inventory {
public:
    enum class Fruit { APPLE, BANANA, GRAPE, ORANGE };
    enum class Paint { RED, BLUE, GREEN, ORANGE };
};

int main() {
    Inventory::Fruit leFruit = Inventory::Fruit::ORANGE;
    if(leFruit == Inventory::Fruit::ORANGE) {
        cout << "Behold this, for this is an orange." << endl;
    }
}