#include <iostream>

enum struct EnumType : unsigned int { SOME = 1, MORE = 6, HERE = 8 };

int main() {
	const unsigned int num = 1;
	
	switch (static_cast<EnumType>(num)) {
	case EnumType::SOME:
		std::cout << "some" << std::endl;
		break;
	}
	
	return 0;
}