/* p10.c */ #include main() { int c; while ((c = fgetc(stdin)) >= 0) fputc(c, stdout); }