1#!/bin/bash 2echo "This is a simple calculator program!" 3echo -n "insert first number:" 4read a; 5echo -n "insert second number:" 6read b; 7echo "Sum = $((a+b))" 8echo "Diff = $((a-b))" 9echo "Prod = $((a*b))" 10exit 11 12