#!/bin/sh # Sum two numbers echo "Enter a number:" read NUMBER1 echo "Enter another number:" read NUMBER2 echo "\nThe sum of your numbers is: $(( $NUMBER1 + $NUMBER2 ))"