计算满足以下条件的数组数量:
a_{j+1},j \ge i 时 a_j >
a_{j+1})。
第一行包含两个整数 n 和 m(2 \le n \le m \le 2 \times 10^5)。
输出一个整数,表示满足条件的数组数量,对 998244353 取模。
3 4
6
3 5
10
42 1337
806066790
The arrays in the first example are: [1,2,1]; [1,3,1]; [1,4,1]; [2,3,2]; [2,4,2]; [3,4,3].