12 lines
123 B
C
12 lines
123 B
C
#include <stdio.h>
|
|
|
|
int main()
|
|
|
|
{
|
|
int ch;
|
|
|
|
while ((ch = getchar()) != EOF)
|
|
putchar(ch);
|
|
return ferror(stdout);
|
|
}
|