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