#include <stdio.h> #include <string.h> int wmain(void) { char a; while(EOF != (a = getchar())) { putchar(a); } return 0; }