#ARC116A. [ARC116A] Odd vs Even

[ARC116A] Odd vs Even

Score : 300300 points

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.
  • 1T2×1051 \leq T \leq 2 \times 10^5
  • 1N10181 \leq N \leq 10^{18}

Input

Input is given from Standard Input in the following format:

TT

case1case_1

\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.

3
2
998244353
1000000000000000000
Same
Odd
Even

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