#D2719. Tile
Tile
Tile
problem
I want to put as many rectangular tiles as possible on a rectangular wall with a size of in height and in width, and a size of in height and in width.
The following conditions must be met when attaching tiles.
- Do not stack tiles.
- Do not apply tiles diagonally, that is, any edge of the tile is parallel or perpendicular to any edge of the wall.
- Do not change the orientation of the tiles, that is, do not swap the vertical and horizontal directions.
When as many tiles as possible are pasted, find the sum of the areas not covered by the tiles.
output
Output the total area of the part not covered by the tile. Also, output a line break at the end.
Example
Input
5 8 2 2
Output
8
inputFormat
outputFormat
output
Output the total area of the part not covered by the tile. Also, output a line break at the end.
Example
Input
5 8 2 2
Output
8
样例
5 8
2 2
8