#include int main(void) { int ch; while ((ch=fgetc(stdin))!=EOF) { fputc(ch, stdout); } printf("\n"); return 0; }