#include using namespace std; int main() { bool test; enum Agents {SMITH, JONES, GRANT, WHITE}; test = JONES > GRANT; cout << "The value of test is " << test << endl; }