#!/bin/bash
# This is a comment
clear
echo "----------------------------------------"
read -p "please enter the first number" a
read -p "please enter the second number" b
sum = $(($a + $b))
sub = $(($a - $b))
echo "$a + $b = $sum"
echo "$a -$b = $sub"
echo "------------------------------------------"
This is my shell script(test3.sh), When i run by using
bash test3.sh
I am getting the following error error