INT64MAX
INT64MAX is a constant often found in programming languages and libraries that represent the largest possible value for a signed 64-bit integer. A signed 64-bit integer is a data type used to store whole numbers, both positive and negative, that can range up to a certain limit. The "64" in 64-bit refers to the number of binary digits (bits) used to represent the number.
A signed integer uses one of its bits, typically the most significant bit, to indicate the sign
INT64MAX specifically represents the upper bound of this range, which is 2^63 - 1. In decimal form,