#include<stdio.h>
main()
{ int a,b,c;
a=b=2;
c=(a++) -1;printf("%d,%d",a,c);
c+=-a+++(b);printf("%d,%d",a,c);
}
A.3,14,1
B.3,14,2
C.2,04,1
D.2,14,1