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