#include <stdio.h>

//while语句扩展
//这里的代码适当的修改是可以用来为清理缓冲区的
int main()
{
	int ch = 0;
	while ((ch = getchar()) != EOF)
		putchar(ch);
	return 0;
}