class CompoundAssignment { public static void main(String[] args) { int x = 1; x += 2; if (x == 3) {} long y = 10; y /= 5; if (y == 2) {} byte z = 10; z += 300; if (z > 127) {} Integer boxed = 4; boxed += 3; if (boxed > 6) {} } }