#include <stdio.h>

int main(void) {
	int x=3;
	int siz;
	
	siz = sizeof(x++);
    printf("%d\n", x);
	
	return 0;
}
