[백준] 백준 Python3 1085번 문제 및 소스코드

2024. 10. 8. 13:11Coding/백준-Python

1. 문제 링크

https://www.acmicpc.net/problem/1085

2. 문제

3. 소스코드

x,y,w,h=map(int, input().split())
print(min(x, y, w-x, h-y))