Problem3052--CF425 - D. Sereja and Squares

3052: CF425 - D. Sereja and Squares

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

Description

Sereja has painted $n$ distinct points on the plane. The coordinates of each point are integers. 
Now he is wondering: how many squares are there with sides parallel to the coordinate axes and with points painted in all its four vertexes? Help him, calculate this number.

Input

The first line contains integer $n\ (1≤n≤10^5)$. 
Each of the next $n$ lines contains two integers $x_i,y_i\ (0≤x_i,y_i≤10^5)$, the integers represent the coordinates of the $i$-th point. It is guaranteed that all the given points are distinct.

Output

In a single line print the required number of squares.

Sample 1 Input

5
0 0
0 2
2 0
2 2
1 1

Sample 1 Output

1

Sample 2 Input

9
0 0
1 1
2 2
0 1
1 0
0 2
2 0
1 2
2 1

Sample 2 Output

5

HINT

CF425D.

Source/Category