#! /bin/bash declare -i sumdeclare -i muliif [ $# -lt 2 ];then echo "usage is please input three argument."exit 5 fi let sum=$1+$2let mult=$1*$2echo "the sum is $sum"echo "The mult is $mult"