#abc069a. [abc069_a]K-City

[abc069_a]K-City

Problem Statement

In K-city, there are nn streets running east-west, and mm streets running north-south. Each street running east-west and each street running north-south cross each other. We will call the smallest area that is surrounded by four streets a block. How many blocks there are in K-city?

Constraints

  • 2n,m1002 ≤ n, m ≤ 100

Input

Input is given from Standard Input in the following format:

nn mm

Output

Print the number of blocks in K-city.


Sample Input 1

3 4

Sample Output 1

6

There are six blocks, as shown below:

9179be829dc9810539213537d4c7398c.png


Sample Input 2

2 2

Sample Output 2

1

There are one block, as shown below:

997bfafa99be630b54d037225a5c68ea.png