def __pow__(self, other): return power(self, other)
def __rpow__(self, other): return power(other, self)