#include <iostream.h>

void main (){

enum elemento {a,
 b,
 c,
 d} ;
int elem ;
cout << "Inserisci nome elemento"<<endl ;
cin >> elem ;
	if (elemento (elem) == a)
	  cout << "ok!" ;
	  else
	  cout << "no!";

	  }


