100 atcoder#ABC162C. [ABC162C] Sum of gcd of Tuples (Easy)
[ABC162C] Sum of gcd of Tuples (Easy)
Score : points
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)}$.
2
9
Thus, the answer is .
200
10813692