#include "stdafx.h"
int max(int a,int b,int c)
{
if((a>=b)&&(a>=c))
return a;
else if((b>=a)&&(b>=c))
return b;
else if((c>=a)&&(c>=b))
return c;
}
int max(int x,int y,int,z)
{
int h;
if ((x>=y)&&(x>=z)) h=x;
else
if((y>=x)&&(y>=z))h=y;
else h=z;
return(h);
}