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