class Integer alias :__plus :+ alias :__minus :- def +(other) self.send(:__minus, other) end def -(other) self.send(:__plus, other) end end p eval(gets)