문제

링크

풀이

n = int(input())
 
for i in range(n):
  k = int(input())
  if k % 2 == 0:
    print("even")
  else:
    print("odd")