#include #define IN 1 /* inside a word */ #define OUT 0 /* outside a word */ /* print one word per line from the input */ int main() { int c, state; state = OUT; while ((c = getchar()) != EOF) { if (c == ' ' || c == '\n' || c == '\t') { if (state == IN) putchar('\n'); state = OUT; } else if (state == OUT) state = IN; if (state == IN) putchar(c); } putchar('\n'); }