template<typename ValueType>
ValueType  Max123(ValueType a, ValueType b)
{
	return a>b ?a : b;
}