#abc256c. [abc256_c]Filling 3x3 array
[abc256_c]Filling 3x3 array
Problem Statement
You are given six integers: , and .
Consider writing a positive integer on each square of a grid so that all of the following conditions are satisfied:
- For , the sum of numbers written in the -th row from the top is .
- For , the sum of numbers written in the -th column from the left is .
For example, if and , then all of the following three ways satisfy the conditions. (There are other ways to satisfy the conditions.)
How many ways are there to write numbers to satisfy the conditions?
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the number of ways to write numbers to satisfy the conditions.
Sample Input 1
3 4 6 3 3 7
Sample Output 1
1
The following is the only way to satisfy the conditions. Thus, should be printed.
Sample Input 2
3 4 5 6 7 8
Sample Output 2
0
There may not be a way to satisfy the conditions.
Sample Input 3
5 13 10 6 13 9
Sample Output 3
120
Sample Input 4
20 25 30 22 29 24
Sample Output 4
30613