For a given array $a_1, a_2, a_3, ... , a_N$ of $N$ elements and an integer $S$, find the smallest sub-array size (smallest window length) where the sum of the sub-array is greater than or equal to $S$. If there is not such sub-array, report 0.
The input is given in the following format.
$N$ $S$
$a_1$ $a_2$ ... $a_N$
Print the smallest sub-array size in a line.
6 4 1 2 1 2 3 2
2
6 6 1 2 1 2 3 2
3
3 7 1 2 3
0