17 lines
193 B
C
17 lines
193 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
register int c;
|
|
|
|
while ( (c=getchar()) != EOF) {
|
|
if (c == ' ')
|
|
putchar('\n');
|
|
else
|
|
putchar(c);
|
|
}
|
|
exit(0);
|
|
}
|