#abc162c. [abc162_c]Sum of gcd of Tuples (Easy)
[abc162_c]Sum of gcd of Tuples (Easy)
Problem Statement
Find $\\displaystyle{\\sum_{a=1}^{K}\\sum_{b=1}^{K}\\sum_{c=1}^{K} \\gcd(a,b,c)}$.
Here denotes the greatest common divisor of , , and .
Constraints
- is an integer.
Input
Input is given from Standard Input in the following format:
Output
Print the value of $\\displaystyle{\\sum_{a=1}^{K}\\sum_{b=1}^{K}\\sum_{c=1}^{K} \\gcd(a,b,c)}$.
Sample Input 1
2
Sample Output 1
9
$\\gcd(1,1,1)+\\gcd(1,1,2)+\\gcd(1,2,1)+\\gcd(1,2,2)$ $+\\gcd(2,1,1)+\\gcd(2,1,2)+\\gcd(2,2,1)+\\gcd(2,2,2)$
Thus, the answer is .
Sample Input 2
200
Sample Output 2
10813692