io-cp.c (106B)
1 #include <stdio.h> 2 3 int main(){ 4 int c; 5 while((c = getchar()) != EOF){ 6 putchar(c); 7 } 8 }