#include <chrono>
int main() {
    using namespace std::chrono;
    hh_mm_ss h{12345s};
    return h.seconds().count() >= 0 ? 0 : 1;
}
