">using namespace std; int main() { string str; while(cin>>str) { int size=str.size(); if(size%8!=0) { str.append(8-size%8,'0'); } for(int i=0;i<str.size();i+=8) { cout<<str.substr(i,8)<&l...