Update agtb.sh

This commit is contained in:
FastFingertips
2021-12-22 07:46:20 +03:00
parent 92439bf1ed
commit 804a59853e

View File

@ -7,14 +7,14 @@
#Author: Ankam Ravi Kumar
# START #
echo "enter the a vloue $a"
echo -e "enter the a value: \c"
read a
echo "enter the b volue $b"
echo -e "enter the b value: \c"
read b
if test "$a" -gt "$b" ; then
echo "$a is greater than $b"
else
echo "$b is greater than $a"
echo "$b is greater than $a"
fi
# END #