# test bignum operation with float/complexi=1<<65# convert bignum to float on rhsprint("%.5g"%(2.0*i))# this should convert to floatprint("%.5g"%(i/5))# these should delegate to floatprint("%.5g"%(i*1.2))print("%.5g"%(i/1.2))# this should delegate to complexprint("%.5g"%(i*1.2j).imag)