in reply to simple math

A quick and dirty trick:
sub subtraction { local $" = "-"; eval "@{[split ' ' => scalar <STDIN>]}"; }

It won't be the fastest solution though.

Abigail