
#include <stdio.h>

int main(void)
{
	char s[1024];

	while (1)
	{
		if (fgets(s, sizeof(s), stdin) == NULL)
			break;

		printf("%s", s);
	}
}

