#ABCDEF. ABCDEF

ABCDEF

You are given a set S of integers between -30000 and 30000 (inclusive).

Find the total number of sextuples  that satisfy: 

 

Input

The first line contains integer N (1 ≤ N ≤ 100), the size of a set S.

Elements of S are given in the next N lines, one integer per line. Given numbers will be distinct.

Output

Output the total number of plausible sextuples.

Examples

Input:
1
1

Output: 1

</p>
Input:
2
2
3

Output: 4

</p>
Input:
2
-1
1

Output: 24

</p>
Input:
3
5
7
10

Output: 10

</p>