echo "enter the first num:" 
read n1
echo "enter the second num:"
read n2
sum=`echo $n1 +$n2 |bc`
echo "sum="$sum
