#include <iostream> #include <string> std::string compress(std::string text) { //TODO: Put your code here } int main() { std::string text; std::cout << "Text: "; std::getline(std::cin, text); std::cout << text << std::endl; std::cout << "Original text size: " << text.size() << " bytes"<< std::endl; // TODO: Put your code here }