#D88. Flip Flip and Flip......

    ID: 70 Type: Default 2000ms 268MiB

Flip Flip and Flip......

Flip Flip and Flip......

There is a grid with infinitely many rows and columns. In this grid, there is a rectangular region with consecutive N rows and M columns, and a card is placed in each square in this region. The front and back sides of these cards can be distinguished, and initially every card faces up.

We will perform the following operation once for each square contains a card:

  • For each of the following nine squares, flip the card in it if it exists: the target square itself and the eight squares that shares a corner or a side with the target square.

It can be proved that, whether each card faces up or down after all the operations does not depend on the order the operations are performed. Find the number of cards that face down after all the operations.

Constraints

  • 1 \leq N,M \leq 10^9
  • All input values are integers.

Input

Input is given from Standard Input in the following format:

N M

Output

Print the number of cards that face down after all the operations.

Examples

Input

2 2

Output

0

Input

1 7

Output

5

Input

314 1592

Output

496080

inputFormat

input values are integers.

Input

Input is given from Standard Input in the following format:

N M

outputFormat

Output

Print the number of cards that face down after all the operations.

Examples

Input

2 2

Output

0

Input

1 7

Output

5

Input

314 1592

Output

496080

样例

1 7
5