#include <stdio.h>

int main(void) {
	// your code goes here
	int a=10;
	int b=10;
	printf("a=%d\n",++a);
	//printf("a=%d\n",a);
	
	b=b+1;
	printf("b=%d\n",b);	

	return 0;
}
