#include #include using namespace std; using namespace numbers; int main(){ cin.tie(0)->sync_with_stdio(0); cin.exceptions(ios::badbit | ios::failbit); string s; cin >> s; int i = ranges::find(s, '#') - s.begin(); int j = ranges::find(s | ranges::views::drop(i + 1), '#') - s.begin(); cout << s.substr(i + 1, j - i - 1) << "\n"; return 0; } /* */ //////////////////////////////////////////////////////////////////////////////////////// // // // Coded by Aeren // // // ////////////////////////////////////////////////////////////////////////////////////////