What is the output of the following code int x = 0, y = 0; System.out.println("x=" + ++x + "\n y=" + y++); System.out.println("x==y? " + (x == y));