Shell Program To Add Two Numbers
AI-enhanced title
read x y
sum=$(( $x + $y ))echo "X=$x"echo "Y=$y"echo "The sum is = $sum"