#abc132b. [abc132_b]Ordinary Number

[abc132_b]Ordinary Number

Problem Statement

We have a permutation pp = {p1,p2,...,pnp_1,\\ p_2,\\ ...,\\ p_n} of {1,2,...,n1,\\ 2,\\ ...,\\ n}.

Print the number of elements pip_i (1<i<n1 < i < n) that satisfy the following condition:

  • pip_i is the second smallest number among the three numbers pi1p_{i - 1}, pip_i, and pi+1p_{i + 1}.

Constraints

  • All values in input are integers.
  • 3leqnleq203 \\leq n \\leq 20
  • pp is a permutation of {1,2,...,n1,\\ 2,\\ ...,\\ n}.

Input

Input is given from Standard Input in the following format:

nn p1p_1 p2p_2 ...... pnp_n

Output

Print the number of elements pip_i (1<i<n1 < i < n) that satisfy the condition.


Sample Input 1

5
1 3 5 4 2

Sample Output 1

2

p2=3p_2 = 3 is the second smallest number among p1=1p_1 = 1, p2=3p_2 = 3, and p3=5p_3 = 5. Also, p4=4p_4 = 4 is the second smallest number among p3=5p_3 = 5, p4=4p_4 = 4, and p5=2p_5 = 2. These two elements satisfy the condition.


Sample Input 2

9
9 6 3 2 5 8 7 4 1

Sample Output 2

5