tcat.cxx 126 B

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