14 lines
203 B
C
14 lines
203 B
C
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
char x[32];
|
|
|
|
if (fgets(x, sizeof x, stdin) == NULL) {
|
|
return ferror(stdin);
|
|
}
|
|
if (fputs(x, stdout) == EOF) {
|
|
return ferror(stdout);
|
|
}
|
|
return 0;
|
|
}
|