#include <iostream>
using namespace std;

struct test {
	
	struct inner {
	int n[10];
	};
	
	inner in;
};

int main() {
	test t;
	t.in = test::inner{ {1, 2, 3, 4, 5, 6, 7, 8, 9} };
	for (int i : t.in.n)
		cout << i << endl;
	// your code goes here
	return 0;
}