#include using namespace std; int main() { char c; c = getchar(); while (c != '\n') { cout << c << ' '; c = getchar(); } return 0; }