#include<iostream> using namespace std; int main(){ string a,b; getline(cin, a); for(auto c : a) b = b + c + " "; b.pop_back(); cout << b; return 0; }