class Prod: def __init__(self, value): self.value = value def __call__(self, other): return self.value * otherx = Prod(2)print x(3)print x(4)