Perl 5.10, 8 bytes
The two numbers to add must be on 2 separate lines for this one to work:
say<>+<>
One with input on the same line (14 + 1 bytes for -a flag)
say$F[0]+$F[1]
One with input on the same line (19 + 1 bytes for -a flag)
map{$s+=$_}@F;say$s
Another one, by changing the array default separator (19 + 1 bytes for -a flag as well)
$"="+";say eval"@F"
Sake
- 901
- 5
- 11