#ifndef MAX_H #define MAX_H template inline L max(L l, R r) { if (l > r) { return l; }else{ return r; } } #endif // MAX_H