Score : $100$ points
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.
Input is given from Standard Input in the following format:
$H$ $W$ $h$ $w$
Print the number of white cells that will remain.
3 2 2 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.
5 5 2 3
6
2 4 2 4
0