We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ad8f95 commit f3ce150Copy full SHA for f3ce150
1085.py
@@ -0,0 +1,7 @@
1
+x, y, w, h = map(int, input().split())
2
+num = [x, y, w-x, h-y]
3
+min = num[0]
4
+for i in range(1,4):
5
+ if num[i] < min:
6
+ min = num[i]
7
+print(min)
0 commit comments