This documentation is automatically generated by online-judge-tools/verification-helper
#include "algebra/monoid_s/monoid_max.hpp"
#pragma once
// MS
template <class T> struct MonoidMax {
using S = T;
static constexpr S op(S a, S b) { return std::max(a, b); }
static constexpr S e() { return std::numeric_limits<T>::lowest(); }
};
#line 2 "algebra/monoid_s/monoid_max.hpp"
// MS
template <class T> struct MonoidMax {
using S = T;
static constexpr S op(S a, S b) { return std::max(a, b); }
static constexpr S e() { return std::numeric_limits<T>::lowest(); }
};