The Number of Even Pairs

AtCoder
IDabc159_a
Time2000ms
Memory256MB
Difficulty
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. ## Constraints * $0 \leq N,M \leq 100$ * $2 \leq N+M$ * All values in input are integers. ## Input Input is given from Standard Input in the following format: $N$ $M$ [samples]
Samples
Input #1
2 1
Output #1
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$.
Input #2
4 3
Output #2
9
Input #3
1 1
Output #3
0
Input #4
13 3
Output #4
81
Input #5
0 3
Output #5
3
API Response (JSON)
{
  "problem": {
    "name": "The Number of Even Pairs",
    "description": {
      "content": "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 t",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc159_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "We have $N+M$ balls, each of which has an integer written on it.  \nIt is known that:\n\n*   The numbers written on $N$ of the balls are even.\n*   The numbers written on $M$ of the balls are odd.\n\nFind t...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments