// #include // using namespace std; int main() { char c; while ((c = getc(stdin)) != EOF) { putc(c, stdout); } }