13 lines
162 B
C
13 lines
162 B
C
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
int main(){
|
||
|
|
int c = 0;
|
||
|
|
while((c = getchar()) != EOF){
|
||
|
|
if(c == ' '|| c == '\t'){
|
||
|
|
putchar('\n');
|
||
|
|
} else
|
||
|
|
putchar(c);
|
||
|
|
}
|
||
|
|
return(0);
|
||
|
|
}
|