#include <iostream>
#include <string>
using namespace std;
int main() {
string str;
getline(cin,str);
str.erase(remove_if(str.begin(), str.end(), isspace), str.end());
cout << str;
return 0;
}
#include <iostream>
#include <string>
using namespace std;
int main() {
string str;
getline(cin,str);
str.erase(remove_if(str.begin(), str.end(), isspace), str.end());
cout << str;
return 0;
}