#include using namespace std; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int px, py, qx, qy; cin >> px >> py >> qx >> qy; double d = abs(px-qx)+abs(py-qy); cout << d / 2 << '\n'; return 0; }