fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5.  
  6. int c;
  7. c = getchar();
  8. while (c != EOF) {
  9. putchar(c);
  10. c = getchar();
  11. }
  12.  
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
Standard output is empty