#include int main(void) { int x, y; x = 2; y = x++; printf("%d %d\n", x, y); x = 2; y = ++x; printf("%d %d\n", x, y); return 0; }