#include <stdio.h> main() { int x=4,y=4; int t=++x||++y; printf("%d %d %d\n",x,y,t); int a=1,b=1; t=--a&&--b; printf("%d %d %d\n",a,b,t); getchar(); }