12 lines
163 B
C
12 lines
163 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
int c = getc(stdin);
|
|
while (c != EOF) {
|
|
putchar(c);
|
|
c = getc(stdin);
|
|
}
|
|
getchar();
|
|
return 0;
|
|
}
|