#include <stdio.h>

int main(void) {
	// your code goes here
	int i=4;
	printf("%d",(++i)++);
	return 0;
}
