10563: ABC121 —— A - White Cells
[Creator : ]
Description
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.
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.
Input
Input is given from Standard Input in the following format:
```
$H$ $W$
$h$ $w$
```
```
$H$ $W$
$h$ $w$
```
Output
Print the number of white cells that will remain.
Constraints
- All values in input are integers.
- $1 \leq H, W \leq 20$
- $1 \leq h \leq H$
- $1 \leq w \leq W$
- $1 \leq H, W \leq 20$
- $1 \leq h \leq H$
- $1 \leq w \leq W$
Sample 1 Input
3 2
2 1
Sample 1 Output
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 2 Input
5 5
2 3
Sample 2 Output
6
Sample 3 Input
2 4
2 4
Sample 3 Output
0