using namespace std; int main() { string s; getline(cin,s); string b; for(auto c:s) b=b+c+” “; cout<<b<<endl;
return 0;
}