#ABC106A. Garden

Garden

题目描述

There is a farm whose length and width are AA yard and BB 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.)

image.png

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

有一个农场,它的长和宽分别是 AA 码和 BB 码。农场主约翰在农场内修建了一条纵向道路和一条横向道路,从一个边界到另一个边界,如下图所示:(灰色部分表示道路)。

image.png

除去道路,这个院子的面积是多少?请找出来。

输入格式

输入内容按以下格式标准输入:

AA BB

输出格式

打印该庭院不包括道路的面积(以平方码为单位)。

样例 #1

样例输入 #1

2 2

样例输出 #1

1

样例 #2

样例输入 #2

5 7

样例输出 #2

24

说明

可以证明道路的位置不会影响面积。

数据规模与约定

  • AA 是介于 22100100 之间(含)的整数。
  • BB 是介于 22100100 (含)之间的整数。

样例 11 解释

在这种情况下,面积是 11 平方码。

样例 22 解释

在这种情况下,面积是 2424 平方码。