#include using namespace std; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int x, y, x2, y2; cin >> x >> y >> x2 >> y2; if (x == y && x2 == y2 && x2 < x) cout << x + 1 << '\n'; else cout << max(x, y) << '\n'; return 0; }