
#include <stdio.h>

int main(void)
{
	int n;

	while (1)
	{
		if (scanf("%d", &n) == EOF)
			break;

		printf("%d\n", n);
	}
}

