#include #include "Student.hpp" using namespace std; template T& maximum(T& a, T& b) { return (a>b?a:b); } int main() { Student george("George", 1234), kate("Kate", 4321); cout << "max('George','Kate'): " << maximum(george, kate) << endl; }