This commit is contained in:
Vadym Afanasiev 2026-02-25 13:01:59 +00:00
parent e4cf9d284e
commit 3a704361b5

View File

@ -19,7 +19,9 @@ while ((o = getchar()) != EOF) {
}
else if (o == '\t') {
putchar(o);
}
else if (isprint(o)) {
putchar(o);
}