I want to return a big number in a plain format but instead I'm getting this:
>>> x=1000000000000000000000000000000
>>> int(1*x/100) # try to get 1% of x
9999999999999999583119736832 # <------------ here
I was expecting 10000000000000000000000000000
, how do I achieve this?