I made a script called addition and tried to run it with the sh command in bash. It would produce the error when I try to run it. But it works fine when use chmod +x filename
5e: 5: 5e: let: not found
5e: 6: 5e: let: not found
5e: 7: 5e: let: not found
a + b =
Here is the script itself
let a=$1
let b=$2
let sum=a+b
echo "a + b = $sum"