#include <iostream>#include "math.h"using namespace std; int minValue = min(min(2, 1), 3);//minValue is 1int maxValue = max(max(2, 1), 3);//maxValue is 3cout << "minValue is " << minValue << endl;cout << "maxValue is " << maxValue;