# 1213.py import math print 10**math.log10(17) # 17.0 print pow(10,math.log10(17)) # 17.0 print 2**4 # 16 print pow(2,4) # 16