AtCoder Regular Contest 053 A - ドミノ色塗り
solution
- 縦向きに置けるのは$H \cdot (W - 1)$個。
- 横向きに置けるのは$(H - 1) \cdot W$個。
足して$2HW - H - W$個。
implementation
#!/usr/bin/env python3
h, w = map(int,input().split())
print(2 * h * w - h - w)
足して$2HW - H - W$個。
#!/usr/bin/env python3
h, w = map(int,input().split())
print(2 * h * w - h - w)