// logical problem // lp0118.c #include int main(){ int x = 10; x = x++; printf("%d\n", x); }