Skip to content

Commit

Permalink
[#12] Feat: Add 직사각형에서 탈출
Browse files Browse the repository at this point in the history
  • Loading branch information
letsjo committed Apr 7, 2023
1 parent 9b002b6 commit 21da746
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions 1085.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# 직사각형에서 탈출

result = list(map(int, input().split()))

result[2] -= result[0]
result[3] -= result[1]

print(min(result))

0 comments on commit 21da746

Please sign in to comment.