fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int c;
  6. c=getchar();
  7. while(c!=EOF)
  8. {
  9. int x;
  10. x=(c!=EOF);
  11. printf("%d",x);
  12. putchar(c);
  13. c=getchar();
  14. }
  15. }
  16.  
Success #stdin #stdout 0s 9424KB
stdin
A
stdout
1A1