#include using namespace std; template int GetMax(T x, T y, T z) { if(x>y) { if(x>z) cout<z) cout<>a>>b>>c; GetMax(a,b,c); return 0; }