#arc116a. [arc116_a]Odd vs Even
[arc116_a]Odd vs Even
Problem Statement
Given is a positive integer . Which are there more of, positive odd divisors of or positive even divisors of ?
You will be given test cases. Solve each of them.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Each case is in the following format:
Constraints
Print lines. The -th line should contain the answer to : 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
has one positive odd divisor and one positive even divisor.