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