We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1874482 commit 7db3678Copy full SHA for 7db3678
심수연/9주차/260227.py
@@ -0,0 +1,8 @@
1
+# https://www.acmicpc.net/problem/1085
2
+
3
+import sys
4
+input = sys.stdin.readline
5
6
+x, y, w, h = map(int, input().split())
7
8
+print(min(y, h-y, x, w-x))
0 commit comments