#include <stdio.h>

int main(int hello,char*world[])
{
	printf("%d\n",hello);
	for(int i=0;i<hello;i++)
		printf("%s\n",world[i]);
	return 0;
}
