// from section 1.5 of K&R #include int main() { int c; while ((c = getchar()) != EOF) { putchar(c); } return 0; }