#include <iostream> using namespace std; int main() { char a[300]; while(cin >> a) { cout << a << ' '; } return 0; }