#include <stdio.h>
void main()
{
	char names[3][10] = { "홍길동", "김말동", "이기자" };
	int i;

	for (i = 0; i < 3; i++)
		printf("%s\\n", names[i]);
}