#include<iostream> #include<string> using namespace std; int main() { string q; getline(cin,q); for(char &c:q) cout<<c<<' '; cout<<endl; return 0; }