Run ID:112083
提交时间:2025-03-08 13:03:02
a,b,c,d = map(int,input().split()) dx = abs(a-c) dy = abs(b-d) if dx>dy: print(dx) else: print(dy)