void main() { int a; int b; int c; int d; a = b = c = d = 0; b++; a = ++b - c-- + a; d = --a - c++ - --b + b; b = c++; }