A - White Cells 解説 /

実行時間制限: 2 sec / メモリ制限: 1024 MB

配点 : 100

問題文

HW 列の白色のマス目があります。

あなたは h 個の行と w 個の列を選び、選んだ行または列に含まれるマス目を全て黒色で塗りつぶします。

白色のマス目はいくつ残るでしょうか。

なお、残る白色のマス目の数は行や列の選び方によらないことが証明できます。

制約

  • 入力は全て整数である。
  • 1 \leq H, W \leq 20
  • 1 \leq h \leq H
  • 1 \leq w \leq W

入力

入力は以下の形式で標準入力から与えられる。

H W
h w

出力

残る白色のマス目の数を出力せよ。


入力例 1

3 2
2 1

出力例 1

1

32 列の白色のマス目があり、2 行と 1 列を選んで黒色で塗りつぶしたとき、白色のマス目は必ず 1 個だけ残ります。


入力例 2

5 5
2 3

出力例 2

6

入力例 3

2 4
2 4

出力例 3

0

Score : 100 points

Problem Statement

There are H rows and W columns of white square cells.

You will choose h of the rows and w of the columns, and paint all of the cells contained in those rows or columns.

How many white cells will remain?

It can be proved that this count does not depend on what rows and columns are chosen.

Constraints

  • All values in input are integers.
  • 1 \leq H, W \leq 20
  • 1 \leq h \leq H
  • 1 \leq w \leq W

Input

Input is given from Standard Input in the following format:

H W
h w

Output

Print the number of white cells that will remain.


Sample Input 1

3 2
2 1

Sample Output 1

1

There are 3 rows and 2 columns of cells. When two rows and one column are chosen and painted in black, there is always one white cell that remains.


Sample Input 2

5 5
2 3

Sample Output 2

6

Sample Input 3

2 4
2 4

Sample Output 3

0