This documentation is automatically generated by online-judge-tools/verification-helper
#pragma once
template <class T> constexpr T oj_local(const T& oj, const T& local) {
#ifndef LOCAL
return oj;
#else
return local;
#endif
}
#line 2 "Utility/oj_local.cpp"
template <class T> constexpr T oj_local(const T& oj, const T& local) {
#ifndef LOCAL
return oj;
#else
return local;
#endif
}