(function(){
    let str = readline();
    
    for(let i = 0; i < str.length % 8; i++){
        str = str.concat("0");
    }
    for(let i = 0; i < str.length / 8; i++){
        console.log(str.slice(8*i, 8*i+8));
    }
})()