LASTDIG - The last digit

Nestor was doing the work of his math class about three days but he is tired of make operations a lot and he should deliver his task tomorrow. His math’s teacher gives him two numbers a and b. The problem consist of finding the last digit of the potency of base a and index b. Help Nestor with his problem. You are given two integer numbers: the base a (0 ≤ a ≤ 20) and the index b (0 ≤ b ≤ 2,147,483,000), a and b both are not 0. You have to find the last digit of ab.

Input

The first line of input contains an integer t, the number of test cases (t ≤ 30). t test cases follow. For each test case will appear a and b separated by space.

Output

For each test case output an integer per line representing the result.

Example

Input:
2
3 10
6 2

Output:
9
6

Added by:Jose Daniel Rodriguez Morales
Date:2008-12-01
Time limit:1s
Source limit:700B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: GOSU
Resource:Own

hide comments
2017-06-17 01:31:10
Keep in mind that both base as well as the index can be zero, coasted me 1 WA.
2017-06-07 13:46:32
can anyone tell what does it mean of WA
2017-05-31 11:47:35 Jamil Siam
Bigger constraints: http://www.spoj.com/problems/LSTDGT/
2017-05-24 10:17:50
2 WA because power 0 :(
2017-05-22 13:51:26
Easy if you know N%4 logic!! Check for it in geeksforgeeks if not!!
2017-05-21 10:44:37
have consiered every case still getting wrong answer ...can someone tell me some testcases
2017-05-14 20:04:41
finally did it. a and b can be zero!!
2017-04-28 20:21:45
O(t) solution
2017-04-10 19:37:43
getting a TLE. Please help.
2017-03-28 00:29:02
care about 10^0
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.