5 lines
89 B
Python
5 lines
89 B
Python
n, h, v = map(int, input().split())
|
|
x = max(h, n - h)
|
|
y = max(v, n - v)
|
|
print(x * y * 4)
|