I have a number like 100100010000001010001 and when I store a number in some variable like:
let numb = 100100010000001010001
it gives me the error:
Integer literal '100100010000001010001' overflows when stored into 'Int'
I have also tried the other ways like:
var number:UInt64 = 100100010000001010001
I just want to add another number to this number. Can anyone tell me how I can do this? I also tried:
NSDecimalNumber(value: 100100010000001010001)
and it does not work either.
0b100100010000001010001