#include <iostream>

struct MyStruct {
    enum { value1 = 1 };
    static constexpr int value2 = 1;
};

class MyClass {
public:
    enum { value1 = 1 };
    static constexpr int value2 = 1;
};


int main() {
    std::cout << MyStruct::value1 << " " << MyStruct::value2 << std::endl;
    std::cout << MyClass::value1 << " " << MyClass::value2 << std::endl;
    return 0;
}