class Solution:
def myPow(self, x, n):
"""
:type x: float
:type n: int
:rtype: float
"""
return x**n
class Solution:
def myPow(self, x, n):
"""
:type x: float
:type n: int
:rtype: float
"""
return x**n