read -p "Total number of calls handled" handled
read -p "Total number of calls closed" closed
if ( $closed > 49 ) || ( $handled > 149 ); then
 echo "You are entitled to a bonus"
else
 echo "You are not entitled to a bonus this week\nYou get a bonus if the calls handled is greater than 150 or calls closed is greater
than 50."
fi