9 lines
130 B
Bash
Raw Normal View History

2025-01-17 10:49:57 +05:30
#!/bin/sh
echo "Enter Basic Salary"
read basic
echo "Enter TA"
read TA
GA=$(echo "$basic + $TA + 0.1*$basic" | bc -l)
echo "$GA"