#include <stdio.h> #include <string.h> int main() { char str[128] = {0}; if (fgets(str, 102, stdin) != NULL) { str[strcspn(str, "\n")] = 0; } int i =0; while (str[i] != '\0') { printf("%c", str[i]); i++; if (i%8 =...