15 lines
204 B
C
15 lines
204 B
C
|
#include <stdio.h>
|
||
|
|
||
|
#define BLANK ' '
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
int c, prev = -1;
|
||
|
|
||
|
while ((c = getchar()) != EOF) {
|
||
|
if (prev != BLANK || c != BLANK)
|
||
|
putchar(c);
|
||
|
prev = c;
|
||
|
}
|
||
|
}
|