Given an array of size , you can jump from an index to another index if >= , for > . Find the length of the longest sequence of jumps that can be possible in the array. You can start at any index.
Input Format:
First line contains an integer .
Second line contains the integer .
Third line contains space separated integers (The array )
Output Format:
Print the required length.
Constrains:
≤ ≤
1 3 5 7 10 - Length 5