#include <stdio.h>

int main()
{
	int a = 0, x;
	int b = 0, y;
	
	x = (a++);
	y = (b = b + 1);
	
	printf("x: %d, y: %d", x, y);
}