#include using namespace std; int main() { string s; cin >> s; for (int i = 0; i < (int)s.size(); i++) { if (s[i] == '#') { for (int j = i + 1; j < (int)s.size(); j++) { if (s[j] == '#') { cout << endl; return 0; } cout << s[j]; } } } }