What is the output of the code snippet below? int x=1, y=5, z=16; x -= 5; y--; z /= 2; System.out.println(x + " " + y + " " + z);