1# test basic complex number functionality 2 3# convert bignum to complex on rhs 4ans = 1j + (1 << 70) 5print("%.5g %.5g" % (ans.real, ans.imag)) 6