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