#include <bits/stdc++.h> using namespace std; int main() { char c; c = getchar(); while (c != '\n') { cout << c << ' '; c = getchar(); } return 0; }