1# test round() with floats that return large integers
2
3for x in (-1e25, 1e25):
4    print("%.3g" % round(x))
5