#include <stdio.h>

const char *ten_words_list[] = {
    "some",
    "very",
    "big",
    "list",
    "that"
    "consists",
    "of",
    "exactly",
    "ten",
    "words"
};

int main(void) {
	for(int i = 0; i < 9; i++) {
		puts(ten_words_list[i]);
	}
	return 0;
}
