100 #ABC162C. [ABC162C] Sum of gcd of Tuples (Easy)

[ABC162C] Sum of gcd of Tuples (Easy)

Score : 300300 points

Problem Statement

Find $\displaystyle{\sum_{a=1}^{K}\sum_{b=1}^{K}\sum_{c=1}^{K} \gcd(a,b,c)}$.

Here gcd(a,b,c)\gcd(a,b,c) denotes the greatest common divisor of aa, bb, and cc.

Constraints

  • 1K2001 \leq K \leq 200
  • KK is an integer.

Input

Input is given from Standard Input in the following format:

KK

Output

Print the value of $\displaystyle{\sum_{a=1}^{K}\sum_{b=1}^{K}\sum_{c=1}^{K} \gcd(a,b,c)}$.

2
9

gcd(1,1,1)+gcd(1,1,2)+gcd(1,2,1)+gcd(1,2,2)\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)+\gcd(2,1,1)+\gcd(2,1,2)+\gcd(2,2,1)+\gcd(2,2,2) =1+1+1+1+1+1+1+2=9=1+1+1+1+1+1+1+2=9

Thus, the answer is 99.

200
10813692