tcat.cxx 121 B

12345678910
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int c;
  5. while ((c = getc(stdin), c != EOF)) {
  6. putc(c, stdout);
  7. }
  8. return 0;
  9. }