Problem10875--ABC159 - A - The Number of Even Pairs

10875: ABC159 - A - The Number of Even Pairs

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

Description

We have $N+M$ balls, each of which has an integer written on it.  
It is known that:

-   The numbers written on $N$ of the balls are even.
-   The numbers written on $M$ of the balls are odd.

Find the number of ways to choose two of the $N+M$ balls (disregarding order) so that the sum of the numbers written on them is even.  
It can be shown that this count does not depend on the actual values written on the balls.

Input

Input is given from Standard Input in the following format:

```
$N$ $M$
```

Output

Print the answer.

Constraints

-   $0 \leq N,M \leq 100$
-   $2 \leq N+M$
-   All values in input are integers.

Sample 1 Input

2 1

Sample 1 Output

1

For example, let us assume that the numbers written on the three balls are $1,2,4$.

  • If we choose the two balls with $1$ and $2$, the sum is odd;
  • If we choose the two balls with $1$ and $4$, the sum is odd;
  • If we choose the two balls with $2$ and $4$, the sum is even.

Thus, the answer is $1$.

Sample 2 Input

4 3

Sample 2 Output

9

Sample 3 Input

1 1

Sample 3 Output

0

13 3

81

Sample 4 Input

0 3

Sample 4 Output

3

Source/Category