#arc116a. [arc116_a]Odd vs Even

[arc116_a]Odd vs Even

Problem Statement

Given is a positive integer NN. Which are there more of, positive odd divisors of NN or positive even divisors of NN?

You will be given TT test cases. Solve each of them.

Constraints

  • All values in input are integers.
  • 1leqTleq2times1051 \\leq T \\leq 2 \\times 10^5
  • 1leqNleq10181 \\leq N \\leq 10^{18}

Input

Input is given from Standard Input in the following format:

TT case1case_1 vdots\\vdots caseTcase_T

Each case is in the following format:

NN

Constraints

Print TT lines. The ii-th line should contain the answer to caseicase_i: Odd if there are more positive odd divisors, Even if there are more positive even divisors, and Same if there are the same number of odd and even divisors.


Sample Input 1

3
2
998244353
1000000000000000000

Sample Output 1

Same
Odd
Even

22 has one positive odd divisor and one positive even divisor.