#include
using namespace std;
template
ElemType Max(ElemType a, ElemType b)
{
return (a > b) ? a : b;
}
int main(void)
{
cout << Max(16, 518) << endl;
cout << Max(16.8, 518) << endl;
system("pause");
return 0;
}