Run ID:144261

提交时间:2026-01-20 21:08:24

a, b, c, d = map(int, input().split()) dx = abs(a - c) dy = abs(b - d) result = max(dx, dy) print(result)