#!/bin/sh echo "Enter Basic Salary" read basic echo "Enter TA" read TA GA=$(echo "$basic + $TA + 0.1*$basic" | bc -l) echo "$GA"