This depends on the number of digits in the system:
If int is processed as 16 bits, it is 2^16 - 1 = 65535
If int is If processed as 32 bits, it is 2^32 - 1 = 4294967295
The int type here is an unsigned integer. If a sign bit is added, the maximum value is equivalent to the above number divided by 2.