Posted on May 14, 2020May 14, 2020 Description Submissions There’re many possible solutions. Submission 1 read X read Y echo $[X + Y] echo $[X - Y] echo $[X * Y] echo $[X / Y] Submission 2 read X read Y echo `expr $X + $Y` echo `expr $X - $Y` echo `expr $X \* $Y` echo `expr $X / $Y` References https://unix.stackexchange.com/questions/93029/how-can-i-add-subtract-etc-two-numbers-with-bash By Bill0412 Bash