#include using namespace std; using ll = long long; #define rep(i, n) for(int i = 0; i < n; i++) int main() { string s, t; cin >> s >> t; set st; st.insert("watermelon"); st.insert("beachball"); st.insert("shrinebell"); st.erase(s); st.erase(t); cout << *st.begin() << endl; }