#include
#include
using namespace std;
template
erro max(erro x,erro y, erro z)
{
if(y>x)
x=y;
if(z>x)
x=z;
return x;
}
int main()
{
int a=0; int b=9; int c=-10;
double h=12.99;double n=0.09;double m=0.01;
double q;
int j;
q=max(h,n,m);
j=max(a,b,c);
cout<
return 1;
}