#include 
using namespace std;
int main()
{
auto isSpace = [](const unsigned char c)
{
return std::isspace(c);
};
string  msg("hh   hh hh pp");
msg.erase(remove_if(msg.begin(), msg.end(),isSpace), msg.end());
cout << "msg--" << msg << endl;}