A good answer might be:

x: 100 y: 99

More Complicated Expressions

The expression on the right of the = can be more complicated, as in the following fragment:

int value = 10 ;
int result = 0 ;

result = value++ * 2 ;

System.out.println("value: " + value + "  result: " + result );

QUESTION 4:

What does the above fragment print out?