#include <iostream> #include <cstdio> using namespace std; int main() { string s; while (cin >> s) cout << s << ' '; puts(""); return 0; }
香不香?