1# negative power should produce float
2
3x = 2
4print(x ** -2)
5
6x = 3
7x **= -2
8print("%.5f" % x)
9