sum.sh 173 B

12345678910
  1. #!/bin/sh
  2. # Sum two numbers
  3. echo "Enter a number:"
  4. read NUMBER1
  5. echo "Enter another number:"
  6. read NUMBER2
  7. echo "\nThe sum of your numbers is: $(( $NUMBER1 + $NUMBER2 ))"