#include <iostream> #include <cstdio> using namespace std; int main() { string s; getline(cin, s); for(auto c : s) printf("%c ",c); return 0; }