#include #include using namespace std; int main() { int x, y, u, v; cin >> x >> y >> u >> v; if ( x < 0 ) { x *= -1; u *= -1; } if ( y < 0 ) { y *= -1; v *= -1; } if ( x > y ) { swap(x, y); swap(u, v); } int d = y + ( x == y && u == v && (u <= x && v <= y) ? 1 : 0 ); //避ける必要がある cout << d << endl; return 0; }