#include #include #include #include #include #include #include #include #include static const int MOD = 1000000007; using ll = int64_t; using namespace std; template constexpr T INF = ::numeric_limits::max()/32*15+208; int main() { int x, y, a, b; cin >> x >> y >> a >> b; if(x == y && a == b && x > a){ cout << x+1 << "\n"; }else { cout << max(x, y) << "\n"; } return 0; }