#include /* copy input to output */ main() { int c; c = getchar(); while (c != EOF) { putchar(c); c = getchar(); } }