i'm trying to display the same original value (inverse of log )after taking the log based 10 as shown in the example, but i'm not able to display the original value, i have follow the answer there but its still not display it, i know its large value . is there away to display it? i'm using python 3.6
import math
a=2172533123329917620172861889109867406049975387320169322608751844460406222231626416365984808960
x=math.log10(a)
print(x) # result there is 93.33696640660276
y=10**x
print(y) # result there is 2.1725331233299482e+93
print(y*10**93) # result there is 2.1725331233299483e+186