#include<bits/stdc++.h> using namespace std; string a; int main() { cin.tie(0); getline(cin,a); for(int i = 0; i < a.size(); i++) { if(a[i] == ' ' && a[i + 1] == ' ') continue; cout << a[i]; } return 0; }