Header for INT_MIN

#include <limits>

int main() {
    int min_value = std::numeric_limits<int>::min();
    return 0;
}