fork download
  1. #include <stdio.h>
  2.  
  3. void main(void){
  4. int nc;
  5.  
  6. nc = 0;
  7. while(getchar() != EOF){
  8. ++nc;
  9. printf("%ld\n", nc);
  10. }
  11. return 0;
  12. }
Runtime error #stdin #stdout 0s 2056KB
stdin
abcdef
stdout
1
2
3
4
5
6