I have two variables a and b and are declared and assigned as follows:
UInt64 a = (UInt64)4294967295 * 3;
UInt64 b = 4294967295 * 3;
When I print them a contains 12884901885 and b contains 4294967295.
Why do I have to cast the number with UInt64 to store such a large value ?
Thanks