# -*- mode: snippet -*-
# name: __sub__
# key: _sub
# group: Special methods
# --
def __sub__(self, other):
    return $0
