public class Plus { public static void main(String[] args) { int c=1; int a; c=c++; a=c; System.out.println("c = "+c+" a="+a); } }