#include <iostream>
using namespace std;
int main()
{
    int lenth=0;
    char s[100];
    int num;//需要补0的个数
    while(cin>>s[lenth])
    {
        if(s[lenth])
        {
            lenth++;
        }
    };
    if(lenth%8)
    {
        num =8-(lenth%8);
    }
    else
    {
        num = 0;
    }
    for(int i = 0;i<num;i++)
    {
        s[lenth++]='0';
    }
    for(int i = 1;i<=lenth;i++)
    {
        if(i%8)
        {
            cout<<s[i-1];
        }
        else
        {
            cout<<s[i-1]<<endl;
        }
    }
}