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