#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define INF 1000000000 #define rep(i,a,b) for (int i=(a);i<(b);i++) #define rev(i,a,b) for (int i=(a)-1;i>=b;i--) using namespace std; typedef long long ll; typedef pair pii; typedef queue qi; typedef vector vi; typedef vector vs; int dx[4] = { 0, 1, 0, -1 }; int dy[4] = { 1, 0, -1, 0 }; int main() { cin.tie(0); ios::sync_with_stdio(false); ll x, y; ll x2, y2; cin >> x >> y; cin >> x2 >> y2; ll ans; if(x == y && x2 == y2 && x > x2) ans = max(x, y) + 1; else ans = max(x, y); cout << ans << endl; return 0; }