#!/usr/bin/sh

# question 3 of the 17-13 
# create an if statement

echo "Enter a string \c"
read Y
if [ "$Y" = "abc" ]
	then echo "$Y is equal to abc"
else echo "$Y is not equal to abc"
fi
