#Lutece1009. Rightmost Digit

Rightmost Digit

Migrated from Lutece 1009 Rightmost Digit

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

Given a positive integer NN, you should output the most right digit of NNN^N.

Input

The input contains several test cases. The first line of the input is a single integer TT which is the number of test cases. TT test cases follow.

Each test case contains a single positive integer N(1N1,000,000,000)N(1 \leq N \leq 1,000,000,000).

Output

For each test case, you should output the rightmost digit of NNN^N.

Samples

2
3
4
7
6

Note

In the first case, 3×3×3=273 \times 3 \times 3 = 27, so the rightmost digit is 77.

In the second case, 4×4×4×4=2564 \times 4 \times 4 \times 4 = 256, so the rightmost digit is 66.

Resources

HDU