Problem5007--相邻数对

5007: 相邻数对

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

给定n个不同的整数,问这些数中有多少对整数,它们的值正好相差1。

Input

输入的第一行包含一个整数n,表示给定整数的个数。
第二行包含所给定的n个整数。

Output

输出一个整数,表示值正好相差1的数对的个数。

Sample 1 Input

6
10 2 6 3 7 8

Sample 1 Output

3

HINT

【样例说明】
值正好相差1的数对包括(2, 3), (6, 7), (7, 8)。
【数据范围】
1<=n<=1000,给定的整数为不超过10000的非负整数。

Source/Category

CSP