int x = 5, y = 10;int z = x-- - --y;System.out.println(z); System.out.println(x); System.out.println(y);