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