#D5044. Ball Eat Chameleons

    ID: 4195 Type: Default 2000ms 268MiB

Ball Eat Chameleons

Ball Eat Chameleons

In Republic of AtCoder, Snuke Chameleons (Family: Chamaeleonidae, Genus: Bartaberia) are very popular pets. Ringo keeps N Snuke Chameleons in a cage.

A Snuke Chameleon that has not eaten anything is blue. It changes its color according to the following rules:

  • A Snuke Chameleon that is blue will change its color to red when the number of red balls it has eaten becomes strictly larger than the number of blue balls it has eaten.
  • A Snuke Chameleon that is red will change its color to blue when the number of blue balls it has eaten becomes strictly larger than the number of red balls it has eaten.

Initially, every Snuke Chameleon had not eaten anything. Ringo fed them by repeating the following process K times:

  • Grab either a red ball or a blue ball.
  • Throw that ball into the cage. Then, one of the chameleons eats it.

After Ringo threw in K balls, all the chameleons were red. We are interested in the possible ways Ringo could have thrown in K balls. How many such ways are there? Find the count modulo 998244353. Here, two ways to throw in balls are considered different when there exists i such that the color of the ball that are thrown in the i-th throw is different.

Constraints

  • 1 \leq N,K \leq 5 \times 10^5
  • N and K are integers.

Input

Input is given from Standard Input in the following format:

N K

Output

Print the possible ways Ringo could have thrown in K balls, modulo 998244353.

Examples

Input

2 4

Output

7

Input

3 7

Output

57

Input

8 3

Output

0

Input

8 10

Output

46

Input

123456 234567

Output

857617983

inputFormat

Input

Input is given from Standard Input in the following format:

N K

outputFormat

Output

Print the possible ways Ringo could have thrown in K balls, modulo 998244353.

Examples

Input

2 4

Output

7

Input

3 7

Output

57

Input

8 3

Output

0

Input

8 10

Output

46

Input

123456 234567

Output

857617983

样例

8 10
46