#include using namespace std; int main() { set motimono = {"watermelon", "beachball", "shrinebell"}; string S, T; cin >> S >> T; motimono.erase(S); motimono.erase(T); cout << *motimono.begin(); }