#Lutece0063. A Simple Game

A Simple Game

Migrated from Lutece 63 A Simple Game

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Alice likes to play games. One day she meets such a game. There are NN * NN switches arranged in an NN * NN array. Pressing a switch would change its state, from off to on or from on to off. In addition, if a switch at row r and column c is pressed, then all switches with coordinate (kk * rr, kk * cc) will change state, with integer k>1k > 1. Initially all switches are off.

.

For example, in the picture above, white buttons represent switches turned off and colored ones represent switches turned on. Initially all buttons are white. If the button at (22,22) is pressed, then buttons at (22,22), (44,44) will change state(represented with orange color). And if one presses the button (22,11), buttons at (22,11) and (44,22) will change from off to on(represented with gray color).

The goal of the game is to turn on all the switches (i.e. when you finish the game, all the switches must be at the state of on) and the player must do that with as few presses as possible. Now Alice would like your help.

Input

The first line of input file is an integer TT, the number of test cases. TT lines follow, each contain an integer NN, the dimension of the array in one game.

1T100,1N100001\leq T \leq 100, 1\leq N \leq 10000

Output

Output consists of T lines. Each line contains an integer, the minimum number of presses for the corresponding test case.

Samples

2
2
3
3
7

Note

For test case 11, press (11,11) (11,22) (22,11). For test case 22, press (11,11) (11,22) (11,33) (22,11) (22,33) (33,11) (33,22).

Resources

The 5th UESTC Programming Contest Preliminary