Make a custom class support + and ==.
__add__
__eq__
class Money: def __init__(self, cents): self.cents = cents # TODO: __add__ and __eq__