Consider the attached code. Assume that the int variables w, x, y, and z have
been properly set-up. Which of the following code segments produces the same
output as the given code segment for all values of w, x, y, and z ?
if (w == x && y > z)
{ System.out.println("big worm"); }
else
{ System.out.println("glazerMon"); }