# -*- mode: snippet -*-
# name: _neg
# key: _neg
# group: Special methods
# --
def __neg__(self):
    return $0
