This documentation is automatically generated by online-judge-tools/verification-helper
 src/Helper/ChminChmax.hpp
 src/Helper/ChminChmax.hpp
    
#include "src/Helper/ChminChmax.hpp"template <class T> bool chmin(T& a, const T& b) { return a > b ? a = b, true : false; }
template <class T> bool chmax(T& a, const T& b) { return a < b ? a = b, true : false; }#line 1 "src/Helper/ChminChmax.hpp"
template <class T> bool chmin(T& a, const T& b) { return a > b ? a = b, true : false; }
template <class T> bool chmax(T& a, const T& b) { return a < b ? a = b, true : false; }