10 lines
120 B
C
10 lines
120 B
C
|
#include <stdio.h>
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
char buffer[80];
|
||
|
|
||
|
while( gets( buffer ) != NULL )
|
||
|
puts( buffer );
|
||
|
}
|