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