10 lines
134 B
C
10 lines
134 B
C
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
main() {
|
||
|
char abuf[1000];
|
||
|
FILE *FR = stdin;
|
||
|
fscanf(FR, "%2000s", abuf);
|
||
|
printf("Result = %s\n", abuf);
|
||
|
}
|