#!/bin/sh
# if2

echo Is it after 11:59AM?
read ans
if (test $ans = yes)
then
  echo Good Afternoon world!
else
  echo Good Morning World!
fi

