public class Assoc { public static void main(String[] args) { int a, b; a = 4; a ++ --; System.out.println(a); // Prints 4 } }