#include <stdio.h>

int main(void) {
	int const COLUMN_NUMBER = 10;
	union {
	int first[1][COLUMN_NUMBER];
	int second[COLUMN_NUMBER];
	} u;
	u.first[0][5] = 3;
	printf("%d\n", u.second[5]);
	return 0;
}
