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