题解 | #判断整数奇偶性#
判断整数奇偶性
http://www.nowcoder.com/practice/a8b018667e274af29b5f76a6673450fc
while True:
try:
n = int(input())
if n % 2 == 0:
print("Even")
else:
print("Odd")
except:
break