#include<stdio.h> int main() { int x = 1, y = 1; x += x++; y *= y++; printf("x=%d, y=%d\n", x, y); return 0; }