main() { int i=3,j=3; int k,h; k=(i++)+(i++)+(i++); h=(++j)+(++j)+(++j); printf("%2d%2d%2d%2d",k,h,i,j); getch(); }