fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a;
  5. while(scanf("%d", &a)!=EOF)
  6. printf("%d\n", a);
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 4556KB
stdin
1
5
2
5346
34
75
23
45
23
7
345
673
456
34
562
56
23
6
stdout
1
5
2
5346
34
75
23
45
23
7
345
673
456
34
562
56
23
6