백준/Bronze 3
백준 1085 파이썬
bonschicken
2020. 12. 27. 23:56
728x90
x, y, w, h = list(map(int, input().split()))
print(min([x, y, w - x, h - y]))