You have R red balls, B blue balls, and one green ball. You are going to arrange the balls in a row. The score of an arrangement is defined as follows:
Find the sum of scores of all possible arrangements, modulo 998244353. Note that balls of the same color cannot be distinguished, thus two arrangements are considered different if and only if there is such an i that the color of the i-th ball in the first arrangement differs from that of the second.
The first line contains integers R (1≤R≤1018) and B (1≤B≤106).
Print the answer.