#include /*Copy input to output; KNR C exercise 1-6*/ int main(){ int c = getchar(); while (c != EOF){ putchar (c); c = getchar(); } return 0; }