BCPC stands for Byteforces Collegiate Programming Contest, and is the most famous competition in Byteforces.
BCPC is a team competition. Each team is composed by a coach and three contestants. Blenda is the coach of the Bit State University(BSU), and she is very strict selecting the members of her team.
In BSU there are
n students numbered from 1 to
n. Since all BSU students are infinitely smart, the only important parameters for Blenda are their reading and writing speed. After a careful measuring, Blenda have found that the
i-th student have a
reading speed equal to
ri (words per minute), and a
writing speed of
wi (symbols per minute). Since BSU students are very smart, the measured speeds are sometimes very big and Blenda have decided to subtract some constant value
c from all the values of reading speed and some value
d from all the values of writing speed. Therefore she considers
ri'=ri-c and
wi'=wi-d.
The student
i is said to
overwhelm the student
j if and only if
ri'·wj'>rj'·wi'. Blenda doesn’t like fights in teams, so she thinks that a team consisting of three distinct students
i,j and
k is
good if
i overwhelms
j,
j overwhelms
k, and
k overwhelms
i. Yes, the relation of overwhelming is not transitive as it often happens in real life.
Since Blenda is busy preparing a training camp in Codeforces, you are given a task to calculate the number of different good teams in BSU. Two teams are considered to be different if there is at least one student that is present in one team but is not present in the other. In other words, two teams are different if the sets of students that form these teams are different.
Note
In the first sample the following teams are good:
(i=1,j=2,k=3),
(i=2,j=5,k=1),
(i=1,j=4,k=3),
(i=5,j=1,k=4).
Note, that for example the team
(i=3,j=1,k=2) is also good, but is considered to be the same as the team
(i=1,j=2,k=3).