#include <cstdint>
#include <limits>

int main()
{
    uint64_t huge {std::numeric_limits<uint64_t>::max()};
    int32_t tiny {huge};
}