RosettaCodeData/Task/A+B/UNIX-Shell/a+b-1.sh
2023-07-01 13:44:08 -04:00

3 lines
51 B
Bash

#!/bin/sh
read a b || exit
echo `expr "$a" + "$b"`