read -t 30 -p "Please enter account name:" username
read -t 30 -s -p "Please enter password:" password
if (( "$username" == "luckbin" )) && (( "$password" == "luckbin" ))
then
echo "very Good!"
else
echo "Account name or password error!"
fi