Problem10490--ABC106 —— A - Garden

10490: ABC106 —— A - Garden

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

There is a farm whose length and width are $A$ yard and $B$ yard, respectively. A farmer, John, made a vertical road and a horizontal road inside the farm from one border to another, as shown below: (The gray part represents the roads.)


What is the area of this yard excluding the roads? Find it.


Note

It can be proved that the positions of the roads do not affect the area.

Input

Input is given from Standard Input in the following format:

```
$A$ $B$
```

Output

Print the area of this yard excluding the roads (in square yards).

Constraints

-   $A$ is an integer between $2$ and $100$ (inclusive).
-   $B$ is an integer between $2$ and $100$ (inclusive).

Sample 1 Input

2 2

Sample 1 Output

1
In this case, the area is 1 square yard.

Sample 2 Input

5 7

Sample 2 Output

24
In this case, the area is 24 square yards.

Source/Category