0_0_37759845_31191.cpp: In function 'void MAX(T&, T)':
0_0_37759845_31191.cpp:13:60: error: expected ';' before '}' token
template<typename T> inline void MAX(T &x, T y){y>x?(x=y):0}
^
0_0_37759845_31191.cpp: In function 'void MIN(T&, T)':
0_0_37759845_31191.cpp:14:60: error: expected ';' before '}' token
template<typename T> inline void MIN(T &x, T y){y<x?(x=y):0}
^
|