#include <limits>
#include <iostream>

int main()
{
    std::cout << std::numeric_limits<const int>::has_infinity;
}
