#include <iostream> #include<string> using namespace std; int main() { string str; getline(cin,str); if(str.size()==0) return 0; int n = str.size()/8; int m = str.size()%8; //是否为8的整数 if(m != 0){ str.resize((n+1)*8, '0'); n++; } string temp; for(int i=0; i<n; i++){ cout<<str.subs...