Takahashi and a cargo are on a coordinate plane.
Takahashi is currently at $(X_A,Y_A)$, and the cargo is at $(X_B,Y_B)$. He wants to move the cargo to $(X_C,Y_C)$.
When he is at $(x,y)$, he can make one of the following moves in a single action.
* Move to $(x+1,y)$. If the cargo is at $(x+1,y)$ before the move, move it to $(x+2,y)$.
* Move to $(x-1,y)$. If the cargo is at $(x-1,y)$ before the move, move it to $(x-2,y)$.
* Move to $(x,y+1)$. If the cargo is at $(x,y+1)$ before the move, move it to $(x,y+2)$.
* Move to $(x,y-1)$. If the cargo is at $(x,y-1)$ before the move, move it to $(x,y-2)$.
Find the minimum number of actions required to move the cargo to $(X_C,Y_C)$.
## Constraints
* $-10^{17}\leq X_A,Y_A,X_B,Y_B,X_C,Y_C\leq 10^{17}$
* $(X_A,Y_A)\neq (X_B,Y_B)$
* $(X_B,Y_B)\neq (X_C,Y_C)$
* All input values are integers.
## Input
The input is given from Standard Input in the following format:
$X_A$ $Y_A$ $X_B$ $Y_B$ $X_C$ $Y_C$
[samples]