mirror of
https://github.com/krislamo/knrc.git
synced 2024-11-10 00:30:35 +00:00
17 lines
167 B
C
17 lines
167 B
C
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
int c;
|
|
int l;
|
|
|
|
while ((c = getchar()) != EOF) {
|
|
if (c == ' ' && c == l) {
|
|
;
|
|
} else {
|
|
printf("%c", c);
|
|
l = c;
|
|
}
|
|
}
|
|
}
|