// template generic max #include template T max( const T a, const T b) { return (a>b ? a : b); }; int main() { cout << max(1,2)<