''' Purpose: show int and float numeric processing ''' # set numerics of interests n = 2 x = 0.5 # compute x to the nth power value = x ** n # display result print( value )