
#define MAX 10

int main() {
	int a[MAX];
	int index;
	for (index = 0; index < MAX; index++) {
		a[index] = index*index;
	}
	return 0;
}
