Write a program which identifies the number of combinations of three integers which satisfy the following conditions:
For example, there are two combinations for n = 5 and x = 9.
The input consists of multiple datasets. For each dataset, two integers n and x are given in a line.
The input ends with two zeros for n and x respectively. Your program should not process for these terminal symbols.
For each dataset, print the number of combinations in a line.
5 9 0 0
2