public class Traceme2 { public static void main(String[] args) { int x = 1; int y = 2; int z = 1; x = y++ + --z - ++x; while(x <= 10){ x+=20; z*=2; y = y++ + ++y; } x = 10; x = x++; x /= 3; y *= 2; z += y *= x; x *= x += 3; y = x++ - x; System.out.println("x = " + x + " y = " + y + " z = " + z); } }