#P5104. Primes Problem

Primes Problem

Problem Description

Given a number n, please count how many tuple(p1, p2, p3) satisfied that p1<=p2<=p3, p1,p2,p3 are primes and p1 + p2 + p3 = n.

Input

Multiple test cases(less than 100), for each test case, the only line indicates the positive integer $n (n \leq 10000)$.

Output

For each test case, print the number of ways.

3 9
0 2