#include <iostream> #include <stdexcept> #include <string> using namespace std; int main() { string s; cin >> s; int remainder = s.length()%8; if ( remainder != 0){ s.append(8-remainder, '0'); } for(int j = 0; j< s.length(); j=j+8){ cout << s.substr(j,8) << end...