#include <stdio.h>

#define TE$T 8 

int main(void) {
	// your code goes here
	int A[] = {1,3,5,7,9, TE$T,2,4,6};

	printf("%d\n", *(A+A[1]-*A));
	return 0;
}
