#include <iostream> #include<string> using namespace std; int main() { string str; while(getline(cin,str)) { int temp = 0; temp =8 - str.size() % 8; if(temp == 8) temp = 0; for(int i = 0; i < temp; i++) { str += ...