100 atcoder#ABC159A. [ABC159A] The Number of Even Pairs

[ABC159A] The Number of Even Pairs

Score : 100100 points

Problem Statement

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

  • The numbers written on NN of the balls are even.
  • The numbers written on MM of the balls are odd.

Find the number of ways to choose two of the N+MN+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.

Constraints

  • 0N,M1000 \leq N,M \leq 100
  • 2N+M2 \leq N+M
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN MM

Output

Print the answer.

2 1
1

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

  • If we choose the two balls with 11 and 22, the sum is odd;
  • If we choose the two balls with 11 and 44, the sum is odd;
  • If we choose the two balls with 22 and 44, the sum is even.

Thus, the answer is 11.

4 3
9
1 1
0
13 3
81
0 3
3