303242: CF630E. A rectangle

Memory Limit:64 MB Time Limit:0 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

A rectangle

题目描述

Developing tools for creation of locations maps for turn-based fights in a new game, Petya faced the following problem. A field map consists of hexagonal cells. Since locations sizes are going to be big, a game designer wants to have a tool for quick filling of a field part with identical enemy units. This action will look like following: a game designer will select a rectangular area on the map, and each cell whose center belongs to the selected rectangle will be filled with the enemy unit. More formally, if a game designer selected cells having coordinates $ (x_{1},y_{1}) $ and $ (x_{2},y_{2}) $ , where $ x_{1}<=x_{2} $ and $ y_{1}<=y_{2} $ , then all cells having center coordinates $ (x,y) $ such that $ x_{1}<=x<=x_{2} $ and $ y_{1}<=y<=y_{2} $ will be filled. Orthogonal coordinates system is set up so that one of cell sides is parallel to $ OX $ axis, all hexagon centers have integer coordinates and for each integer $ x $ there are cells having center with such $ x $ coordinate and for each integer $ y $ there are cells having center with such $ y $ coordinate. It is guaranteed that difference $ x_{2}-x_{1} $ is divisible by $ 2 $ . Working on the problem Petya decided that before painting selected units he wants to output number of units that will be painted on the map. Help him implement counting of these units before painting. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF630E/48c2c84bca0c98bd6d46d326b4d0dd0c737e119c.png)

输入输出格式

输入格式


The only line of input contains four integers $ x_{1},y_{1},x_{2},y_{2} $ ( $ -10^{9}<=x_{1}<=x_{2}<=10^{9},-10^{9}<=y_{1}<=y_{2}<=10^{9} $ ) — the coordinates of the centers of two cells.

输出格式


Output one integer — the number of cells to be filled.

输入输出样例

输入样例 #1

1 1 5 5

输出样例 #1

13

Input

加入题单

算法标签: