Gcd and Lcm

Accepts: 0
Submissions: 42
Time Limit: 6000/3000 MS (Java/Others)
Memory Limit: 524288/524288 K (Java/Others)
Problem Description
$\sum_{i=1}^n\sum_{j=1}^n\sum_{k=1}^n\sum_{l=1}^n [(i,j),(k,l)]$
Input
First line contains a single integer $T \leq 100$ which denotes the number of test cases. For each test case, there is an positive integer $n \leq 10^{7}$.
Output
For each case, output an integer in a single line means the answer mod $2^{32}$.
Sample Input
1
1
Sample Output
1

Hint
[a,b] means lowest common multiple of a and b,(a,b) means greatest common divisor of a and b.