#include <stdio.h> int main(void) { int i = 2, j; j = (i++) + (i++) + (++i); printf("%d\n", j); return 0; }