#include int main(void); int main(void) { int c; while ( ( c = getchar() ) != EOF ) { putchar(c); } return 0; }