include include using namespace std;int main(){ string str; int len,temp,j; while(cin>>str) { len=str.size(); temp=0; while(len>8) { for(j=temp;j<temp+8;j++) cout<<str[j]; len=len-8; temp=temp+8...