By far, I can only get the numbers in average, but the largest number.
#! /bin/sh
# Get input numbers from user
echo Please enter three numbers
read a b c
# Calculate average of input numbers
avg=`expr \( $a + $b + $c \) / 3`
# Display the result
echo The average of the two input numbers is $avg
exit