atcoder#ARC116A. [ARC116A] Odd vs Even
[ARC116A] Odd vs Even
Score : points
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.
3
2
998244353
1000000000000000000
Same
Odd
Even
has one positive odd divisor and one positive even divisor.