Marbels , limit exceeding

how to handle this 64 bit integer limit
please tell me

@vikashkmr519 there comes a bigint() to store int greater than 64 bit.
Take a look at its implementation here https://github.com/robinrst/HackerBlocks/blob/master/MARBLES.cpp

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.

how do we decide ki long use hoga ya, double use hoga ya bigInt hoga, please ek baar constraints ke sath bata dijiye

if result is less than 10^9 use int else if it is upto 10^18 use long long int for bigger than this use bigint().long int can use for 32 bits or for 64 bits depends on the platform so for result between 10^9 to 10^18 use long long int as it is of 64 bits for all.

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.