#include using namespace std; typedef long long ll; typedef unsigned long long ull; typedef long double ld; typedef pair P; #define EACH(i,a) for (auto& i : a) #define FOR(i,a,b) for (ll i=(a);i<(b);i++) #define RFOR(i,a,b) for (ll i=(b)-1;i>=(a);i--) #define REP(i,n) for (ll i=0;i<(n);i++) #define RREP(i,n) for (ll i=(n)-1;i>=0;i--) #define debug(x) cout<<#x<<": "< istream& operator>>(istream& is, vector& vec) { EACH(x,vec) is >> x; return is; } template ostream& operator<<(ostream& os, vector& vec) { REP(i,vec.size()) { if (i) os << " "; os << vec[i]; } return os; } template ostream& operator<<(ostream& os, vector< vector >& vec) { REP(i,vec.size()) { if (i) os << endl; os << vec[i]; } return os; } bool gt(string a, string b) { if (a.size() != b.size()) return a.size() > b.size(); return a > b; } int main() { std::ios::sync_with_stdio(false); std::cin.tie(0); string A, B; string a, b; string x, y; cin >> A >> a >> x >> B >> b >> y; if ( gt(a, b) ) { cout << A << endl; } else if ( gt(b, a) ) { cout << B << endl; } else { cout << -1 << endl; } }