Pythagorean Theorem II

题意翻译

给你一个正整数 $n$,让你求出在 $1 ≤ a ≤ b ≤ c ≤ n$ 的范围内有多少个 $a^2+b^2=c^2$, 输出三元组 $(a,b,c)$ 的个数。

题目描述

In mathematics, the Pythagorean theorem — is a relation in Euclidean geometry among the three sides of a right-angled triangle. In terms of areas, it states: In any right-angled triangle, the area of the square whose side is the hypotenuse (the side opposite the right angle) is equal to the sum of the areas of the squares whose sides are the two legs (the two sides that meet at a right angle). The theorem can be written as an equation relating the lengths of the sides $ a $ , $ b $ and $ c $ , often called the Pythagorean equation: $ a^{2}+b^{2}=c^{2} $ where $ c $ represents the length of the hypotenuse, and $ a $ and $ b $ represent the lengths of the other two sides. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF304A/dce71d69bec644282a576a6a33bfe17bb5e666a5.png)Given $ n $ , your task is to count how many right-angled triangles with side-lengths $ a $ , $ b $ and $ c $ that satisfied an inequality $ 1<=a<=b<=c<=n $ .

输入输出格式

输入格式


The only line contains one integer $ n (1<=n<=10^{4}) $ as we mentioned above.

输出格式


Print a single integer — the answer to the problem.

输入输出样例

输入样例 #1

5

输出样例 #1

1

输入样例 #2

74

输出样例 #2

35