#include<bits/stdc++.h> using namespace std; int main() { string str; while(getline(cin, str)) { int len = str.size(); int remainder = len % 8; if(remainder != 0) { str.append(8-remainder, '0'); } for(int i=0; i<len; i+=8) { cout << str.substr(i,8) << endl; } } return 0; }