// maxvaluehead.cpp: Demonstration of a function template
// defined in the header file maxvaluehead.cpp
template <class T>
T max(T a, T b) {
 return (a > b ? a : b);
}

