Piece of Cake!

This commit is contained in:
2023-06-24 21:07:31 +02:00
parent dbfdfbbab8
commit 3a93e94a41

4
pieceofcake2.py Normal file
View File

@@ -0,0 +1,4 @@
n, h, v = map(int, input().split())
x = max(h, n - h)
y = max(v, n - v)
print(x * y * 4)