#include #include using namespace std; int main(){ istream_iterator in_it(cin); do { cout << *in_it++; } while (*in_it != '.'); return 0;}