#include <iostream>
using namespace std;

enum class myEnum : unsigned int
{
	bar = 3
};

int main() {
	// your code goes here
	
	unsigned int v  = 2;
	switch(v)
	{
		case 2:
		break;
		
		case myEnum::bar:
		break;
	}
	
	return 0;
}