#include #include using namespace std; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); string S; S.reserve(100), cin >> S; uint32_t i; for (i = 0; S[i] != '#'; ++i); for (++i; S[i] != '#'; ++i) cout << S[i]; cout << '\n'; return 0; }