public class Count { public static void main (String[] args) { int count=15; int a, b, c, d; a = count++; b = count; c = ++count; d = count; System.out.println("Result = " + a + ", " + b + ", " + c + ", " + d); } }