Given a number, find out if it is divisible by 6 or not.
There are multiple test cases.
First lines containing the number of test cases T.
Next T lines containing a number each ai.
T lines each indicating if the number entered in the ith line is divisible by 6 or not. Print "True" if yes, "False" if no.
4
457
66
0
40
False
True
True
False
0 < T <= 100000
0 <= ai <= 100000