#include<bits/stdc++.h> using namespace std; int main(){ string s[201]; int i=0; while(cin>>s[i]){ i++; } for(int k=0;k<i;k++) cout<<s[k]<<" "; return 0; }