RosettaCodeData/Task/A+B/UNIX-Shell/a+b-1.sh

4 lines
51 B
Bash
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
#!/bin/sh
read a b || exit
echo `expr "$a" + "$b"`