so i am trying to script the commands for simple mathematics such as addition , subtraction , multiplication and division , i started to write a script for addition but there is a problem ; here is my script
echo "choose two numbers"
read a
read b 
select operation in addition substraction division multiplication
    do case $operation in
    "addition")
        echo "result of the addition=" "$ ((expr $a + $b))";;
 
    